2022-11-15 17:09:27 +13:00
|
|
|
namespace Content.Server.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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class IntrinsicRadioReceiverComponent : Component
|
2022-11-15 17:09:27 +13:00
|
|
|
{
|
|
|
|
|
}
|