Fix test prototypes fields being marked as unused (#20853)

This commit is contained in:
DrSmugleaf 2023-10-09 00:19:32 -07:00 committed by GitHub
parent a62b9ea19b
commit d9b6f17d50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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
{
}