TelecomServerComponent.cs 492 B

123456789101112
  1. namespace Content.Shared.Radio.Components;
  2. /// <summary>
  3. /// Entities with <see cref="TelecomServerComponent"/> are needed to transmit messages using headsets.
  4. /// They also need to be powered by <see cref="ApcPowerReceiverComponent"/>
  5. /// have <see cref="EncryptionKeyHolderComponent"/> and filled with encryption keys
  6. /// of channels in order for them to work on the same map as server.
  7. /// </summary>
  8. [RegisterComponent]
  9. public sealed partial class TelecomServerComponent : Component
  10. {
  11. }