22 lines
452 B
C#
22 lines
452 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 CrewMonitoringState(List<SuitSensorStatus> sensors)
|
|
{
|
|
Sensors = sensors;
|
|
}
|
|
}
|