15 lines
259 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|