28 lines
694 B
C#
28 lines
694 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 bool CorpseAlertEnabled;
|
|
|
|
public CrewMonitoringState(List<SuitSensorStatus> sensors, bool corpseAlertEnabled = false)
|
|
{
|
|
Sensors = sensors;
|
|
CorpseAlertEnabled = corpseAlertEnabled;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class CrewMonitoringToggleCorpseAlertMessage : BoundUserInterfaceMessage
|
|
{
|
|
}
|