Files
tbd-station-14/Content.Server/Station/Components/StationRandomTransformComponent.cs
Ed 44b20f60ff Rotate and Offset station CCVar nuke (#26175)
* no content

* add noRot to Europa

* bruh. and this

* yay

* fix
2024-04-15 00:26:28 +10:00

17 lines
436 B
C#

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