Files
tbd-station-14/Content.Shared/Shuttles/BUIStates/ShuttleConsoleBoundInterfaceState.cs
2022-06-23 14:36:47 +10:00

22 lines
590 B
C#

using Content.Shared.Shuttles.Components;
using Robust.Shared.Map;
using Robust.Shared.Serialization;
namespace Content.Shared.Shuttles.BUIStates;
[Serializable, NetSerializable]
public sealed class ShuttleConsoleBoundInterfaceState : RadarConsoleBoundInterfaceState
{
public readonly ShuttleMode Mode;
public ShuttleConsoleBoundInterfaceState(
ShuttleMode mode,
float maxRange,
EntityCoordinates? coordinates,
Angle? angle,
List<DockingInterfaceState> docks) : base(maxRange, coordinates, angle, docks)
{
Mode = mode;
}
}