6
2026-01-24 12:49:55 +03:00

23 lines
442 B
C#

using Content.Shared.Actions;
namespace Content.Shared.RatKing;
public sealed partial class RatKingRaiseArmyActionEvent : InstantActionEvent
{
}
public sealed partial class RatKingDomainActionEvent : InstantActionEvent
{
}
public sealed partial class RatKingOrderActionEvent : InstantActionEvent
{
/// <summary>
/// The type of order being given
/// </summary>
[DataField("type")]
public RatKingOrderType Type;
}