1
0

GetDefaultRadioChannelEvent.cs 512 B

123456789101112131415
  1. using Content.Shared.Chat;
  2. using Content.Shared.Inventory;
  3. namespace Content.Shared.Radio;
  4. public sealed class GetDefaultRadioChannelEvent : EntityEventArgs, IInventoryRelayEvent
  5. {
  6. /// <summary>
  7. /// Id of the default <see cref="RadioChannelPrototype"/> that will get addressed when using the
  8. /// department/default channel prefix. See <see cref="SharedChatSystem.DefaultChannelKey"/>.
  9. /// </summary>
  10. public string? Channel;
  11. public SlotFlags TargetSlots => ~SlotFlags.POCKET;
  12. }