Files
crystall-punk-14/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs

12 lines
429 B
C#
Raw Permalink Normal View History

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]
public sealed partial class IntrinsicRadioReceiverComponent : Component
2022-11-15 17:09:27 +13:00
{
}