* move all the radio components and system to Shared. * duh split impl * address reviews * cleanup --------- Co-authored-by: walksanatora <walkerffo22@gmail.com>
17 lines
548 B
C#
17 lines
548 B
C#
using Content.Shared.Chat;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Radio.Components;
|
|
|
|
/// <summary>
|
|
/// This component allows an entity to directly translate spoken text into radio messages (effectively an intrinsic
|
|
/// radio headset).
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class IntrinsicRadioTransmitterComponent : Component
|
|
{
|
|
[DataField]
|
|
public HashSet<ProtoId<RadioChannelPrototype>> Channels = new() { SharedChatSystem.CommonChannel };
|
|
}
|