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 Sensors; public CrewMonitoringState(List sensors) { Sensors = sensors; } }