6
2025-11-05 11:11:22 +03:00

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;
}
}