6
StarHorizon_Public/Content.Server/Radio/Components/IntrinsicRadioReceiverComponent.cs
2026-01-24 12:49:55 +03:00

12 lines
429 B
C#

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
{
}