forked from zxl/LaboratoryProtection
17 lines
335 B
C#
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
|