using System.Threading;
using Content.Shared.Disease;
namespace Content.Server.Disease.Components
{
///
/// For disease vaccines
///
[RegisterComponent]
public sealed class DiseaseVaccineComponent : Component
{
///
/// How long it takes to inject someone
///
[DataField("injectDelay")]
public float InjectDelay = 2f;
///
/// If this vaccine has been used
///
public bool Used = false;
///
/// The disease prototype currently on the vaccine
///
[ViewVariables(VVAccess.ReadWrite)]
public DiseasePrototype? Disease;
}
}