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 class IntrinsicRadioTransmitterComponent : Component
{
[DataField("channels", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))]
public readonly HashSet Channels = new() { "Common" };
}