using Content.Server.Chat.Systems;
using Content.Shared.Chat;
using Content.Shared.Radio;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Server.Radio.Components;
///
/// This component allows an entity to directly translate spoken text into radio messages (effectively an intrinsic
/// radio headset).
///
[RegisterComponent]
public sealed partial class IntrinsicRadioTransmitterComponent : Component
{
[DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))]
public HashSet Channels = new() { SharedChatSystem.CommonChannel };
}