2022-11-15 17:09:27 +13:00
|
|
|
using Content.Server.Radio.EntitySystems;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Radio.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This component is used to tag players that are currently wearing an ACTIVE headset.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class WearingHeadsetComponent : Component
|
2022-11-15 17:09:27 +13:00
|
|
|
{
|
|
|
|
|
[DataField("headset")]
|
|
|
|
|
public EntityUid Headset;
|
|
|
|
|
}
|