zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Model/Core/Object/EntityEventAttribute.cs

15 lines
259 B
C#

using System;
namespace ET
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class EntityEventAttribute: Attribute
{
public int ClassType;
public EntityEventAttribute(int classType)
{
this.ClassType = classType;
}
}
}