EntityEventAttribute.cs 313 B

123456789101112131415
  1. using System;
  2. namespace KYFramework
  3. {
  4. [AttributeUsage(AttributeTargets.Class,AllowMultiple =true)]
  5. public class EntityEventAttribute : Attribute
  6. {
  7. public int ClassType;
  8. public EntityEventAttribute(int classType)
  9. {
  10. this.ClassType = classType;
  11. }
  12. }
  13. }