16 lines
397 B
C#
16 lines
397 B
C#
|
|
using Robust.Shared.GameStates;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.RatKing;
|
|||
|
|
|
|||
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(SharedRatKingSystem))]
|
|||
|
|
[AutoGenerateComponentState]
|
|||
|
|
public sealed partial class RatKingServantComponent : Component
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The king this rat belongs to.
|
|||
|
|
/// </summary>
|
|||
|
|
[DataField("king")]
|
|||
|
|
[AutoNetworkedField]
|
|||
|
|
public EntityUid? King;
|
|||
|
|
}
|