1
0

TestPrototypesAttribute.cs 332 B

123456789101112
  1. using JetBrains.Annotations;
  2. namespace Content.IntegrationTests;
  3. /// <summary>
  4. /// Attribute that indicates that a string contains yaml prototype data that should be loaded by integration tests.
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Field)]
  7. [MeansImplicitUse]
  8. public sealed class TestPrototypesAttribute : Attribute
  9. {
  10. }