Files
17 lines
448 B
C#
17 lines
448 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 = false; // WD edit
|
|||
}
|