RatKingActions.cs 442 B

12345678910111213141516171819202122
  1. using Content.Shared.Actions;
  2. namespace Content.Shared.RatKing;
  3. public sealed partial class RatKingRaiseArmyActionEvent : InstantActionEvent
  4. {
  5. }
  6. public sealed partial class RatKingDomainActionEvent : InstantActionEvent
  7. {
  8. }
  9. public sealed partial class RatKingOrderActionEvent : InstantActionEvent
  10. {
  11. /// <summary>
  12. /// The type of order being given
  13. /// </summary>
  14. [DataField("type")]
  15. public RatKingOrderType Type;
  16. }