14 lines
345 B
C#
14 lines
345 B
C#
|
|
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]
|
||
|
|
public sealed class WearingHeadsetComponent : Component
|
||
|
|
{
|
||
|
|
[DataField("headset")]
|
||
|
|
public EntityUid Headset;
|
||
|
|
}
|