17 lines
436 B
C#
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;
|
|
}
|