UnitEventAttribute.cs 196 B

1234567891011
  1. using Common.Event;
  2. namespace Model
  3. {
  4. public class UnitEventAttribute: AEventAttribute
  5. {
  6. public UnitEventAttribute(int type): base(type)
  7. {
  8. }
  9. }
  10. }