using Content.Server.GameTicking; namespace Content.Server.Station.Components; /// /// Added to grids saved in maps to designate that they are the 'main station' grid. /// [RegisterComponent] [Access(typeof(GameTicker))] public sealed partial class BecomesStationComponent : Component { /// /// Mapping only. Should use StationIds in all other /// scenarios. /// [DataField("id", required: true)] [ViewVariables(VVAccess.ReadWrite)] public string Id = default!; }