Files
OldThink/Content.Shared/Radio/Components/TelecomServerComponent.cs

13 lines
492 B
C#
Raw Permalink Normal View History

2023-03-07 00:11:36 +03:00
namespace Content.Shared.Radio.Components;
2023-03-24 03:02:41 +03:00
/// <summary>
/// Entities with <see cref="TelecomServerComponent"/> are needed to transmit messages using headsets.
2023-03-24 03:02:41 +03:00
/// They also need to be powered by <see cref="ApcPowerReceiverComponent"/>
/// have <see cref="EncryptionKeyHolderComponent"/> and filled with encryption keys
/// of channels in order for them to work on the same map as server.
/// </summary>
2023-03-07 00:11:36 +03:00
[RegisterComponent]
public sealed partial class TelecomServerComponent : Component
2023-03-07 00:11:36 +03:00
{
2023-03-24 03:02:41 +03:00
}