using Content.Server.Station.Systems; namespace Content.Server.Station.Components; /// /// Stores station parameters that can be randomized by the roundstart /// [RegisterComponent, Access(typeof(StationSystem))] public sealed partial class StationRandomTransformComponent : Component { [DataField] public float? MaxStationOffset = 100.0f; [DataField] public bool EnableStationRotation = true; }