* move all the radio components and system to Shared. * duh split impl * address reviews * cleanup --------- Co-authored-by: walksanatora <walkerffo22@gmail.com>
12 lines
479 B
C#
12 lines
479 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Radio.Components;
|
|
|
|
/// <summary>
|
|
/// This component allows an entity to directly translate radio messages into chat messages. Note that this does not
|
|
/// automatically add an <see cref="ActiveRadioComponent"/>, which is required to receive radio messages on specific
|
|
/// channels.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class IntrinsicRadioReceiverComponent : Component;
|