using Content.Shared.Medical.SuitSensor;
using Robust.Shared.Map;
namespace Content.Server.Medical.CrewMonitoring;
[RegisterComponent]
[Access(typeof(CrewMonitoringServerSystem))]
public sealed partial class CrewMonitoringServerComponent : Component
{
///
/// List of all currently connected sensors to this server.
///
public readonly Dictionary SensorStatus = new();
///
/// After what time sensor consider to be lost.
///
[DataField("sensorTimeout"), ViewVariables(VVAccess.ReadWrite)]
public float SensorTimeout = 10f;
}