Accounting/Assets/Plugins/ETTask/AsyncMethodBuilderAttribute.cs

17 lines
335 B
C#

#if !NOT_UNITY
namespace System.Runtime.CompilerServices
{
public sealed class AsyncMethodBuilderAttribute: Attribute
{
public Type BuilderType
{
get;
}
public AsyncMethodBuilderAttribute(Type builderType)
{
BuilderType = builderType;
}
}
}
#endif