Files
tbd-station-14/Content.Shared/RatKing/RatKingActions.cs
Nemanja f16ff3a2d9 Rat King Milsim + Buffs (#20190)
* rat king update

* rummaging

* buuuuunnnnncccchhh of shit

* the last of it

* make rat servants not ghost roles

* pissma buff and cooldown
2023-09-22 15:01:05 -05: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;
}