WearingHeadsetComponent.cs 353 B

12345678910111213
  1. using Content.Server.Radio.EntitySystems;
  2. namespace Content.Server.Radio.Components;
  3. /// <summary>
  4. /// This component is used to tag players that are currently wearing an ACTIVE headset.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class WearingHeadsetComponent : Component
  8. {
  9. [DataField("headset")]
  10. public EntityUid Headset;
  11. }