WearingStethoscopeComponent.cs 445 B

123456789101112131415161718
  1. using System.Threading;
  2. namespace Content.Server.Medical.Components
  3. {
  4. /// <summary>
  5. /// Used to let doctors use the stethoscope on people.
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class WearingStethoscopeComponent : Component
  9. {
  10. public CancellationTokenSource? CancelToken;
  11. [DataField("delay")]
  12. public float Delay = 2.5f;
  13. public EntityUid Stethoscope = default!;
  14. }
  15. }