UnityGame/Library/PackageCache/com.unity.test-framework.performance/Runtime/Attributes/RequiredMemberAttribute.cs

11 lines
218 B
C#
Raw Normal View History

2024-10-27 10:53:47 +03:00
namespace Unity.PerformanceTesting
{
internal class RequiredMemberAttribute
#if UNITY_2021_1_OR_NEWER
: UnityEngine.Scripting.RequiredMemberAttribute
#else
: System.Attribute
#endif
{
}
}