]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix test prototypes fields being marked as unused (#20853)
authorDrSmugleaf <DrSmugleaf@users.noreply.github.com>
Mon, 9 Oct 2023 07:19:32 +0000 (00:19 -0700)
committerGitHub <noreply@github.com>
Mon, 9 Oct 2023 07:19:32 +0000 (00:19 -0700)
Content.IntegrationTests/TestPrototypesAttribute.cs

index fc533927a4d59b3ed361cc2ad620387c342fee26..a6728d6728e15b174b20c4d0a7e5cd41bc59a62d 100644 (file)
@@ -1,9 +1,12 @@
+using JetBrains.Annotations;
+
 namespace Content.IntegrationTests;
 
 /// <summary>
 /// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests.
 /// </summary>
 [AttributeUsage(AttributeTargets.Field)]
+[MeansImplicitUse]
 public sealed class TestPrototypesAttribute : Attribute
 {
 }