using Content.Shared.Disease; namespace Content.Server.Disease.Components { /// /// For mouth swabs used to collect and process /// disease samples. /// [RegisterComponent] public sealed class DiseaseSwabComponent : Component { /// /// How long it takes to swab someone. /// [DataField("swabDelay")] public float SwabDelay = 2f; /// /// If this swab has been used /// public bool Used = false; /// /// The disease prototype currently on the swab /// [ViewVariables] public DiseasePrototype? Disease; } }