2023-09-08 18:16:05 -07:00
|
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.RatKing;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed partial class RatKingRaiseArmyActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public sealed partial class RatKingDomainActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-09-22 16:01:05 -04:00
|
|
|
|
|
|
|
|
|
|
public sealed partial class RatKingOrderActionEvent : InstantActionEvent
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The type of order being given
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("type")]
|
|
|
|
|
|
public RatKingOrderType Type;
|
|
|
|
|
|
}
|