28 lines
675 B
C#
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;
|
|
}
|
|
}
|
|
|
|
}
|