2023-03-07 00:11:36 +03:00
|
|
|
namespace Content.Shared.Radio.Components;
|
|
|
|
|
|
2023-03-24 03:02:41 +03:00
|
|
|
/// <summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
/// 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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class TelecomServerComponent : Component
|
2023-03-07 00:11:36 +03:00
|
|
|
{
|
2023-03-24 03:02:41 +03:00
|
|
|
}
|