WorldEventAttribute.cs 198 B

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