mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 04:10:55 +01:00
13 lines
332 B
C#
13 lines
332 B
C#
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
|
|
{
|
|
}
|