Files
tbd-station-14/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs
2023-04-13 16:21:24 +10:00

28 lines
675 B
C#

using Content.Shared.Medical.SuitSensor;
using Robust.Shared.Serialization;
namespace Content.Shared.Medical.CrewMonitoring
{
[Serializable, NetSerializable]
public enum CrewMonitoringUIKey
{
Key
}
[Serializable, NetSerializable]
public sealed class CrewMonitoringState : BoundUserInterfaceState
{
public List<SuitSensorStatus> Sensors;
public readonly bool Snap;
public readonly float Precision;
public CrewMonitoringState(List<SuitSensorStatus> sensors, bool snap, float precision)
{
Sensors = sensors;
Snap = snap;
Precision = precision;
}
}
}