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

20 lines
548 B
C#

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