1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Plugs/ETTask/AsyncMethodBuilderAttribute.cs

17 lines
335 B
C#
Raw Normal View History

2023-09-14 15:36:17 +08:00
#if !NOT_UNITY
namespace System.Runtime.CompilerServices
{
public sealed class AsyncMethodBuilderAttribute: Attribute
{
public Type BuilderType
{
get;
}
public AsyncMethodBuilderAttribute(Type builderType)
{
BuilderType = builderType;
}
}
}
#endif