namespace Content.Server._Goobstation.Spawn.Components; /// /// Component-marker for unique entity /// [RegisterComponent] public sealed partial class UniqueEntityMarkerComponent : Component { /// /// Marker name that would be used in check /// [DataField] public string? MarkerName; /// /// If true - marker will work on grids with StationDataComponent /// If false - marker will work globally /// [DataField] public bool StationOnly = true; }