using Content.Shared.Chat; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; namespace Content.Shared.Radio.Components; /// /// This component allows an entity to directly translate spoken text into radio messages (effectively an intrinsic /// radio headset). /// [RegisterComponent, NetworkedComponent] public sealed partial class IntrinsicRadioTransmitterComponent : Component { [DataField] public HashSet> Channels = new() { SharedChatSystem.CommonChannel }; }