mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
16 lines
512 B
C#
16 lines
512 B
C#
using Content.Shared.Chat;
|
|
using Content.Shared.Inventory;
|
|
|
|
namespace Content.Shared.Radio;
|
|
|
|
public sealed class GetDefaultRadioChannelEvent : EntityEventArgs, IInventoryRelayEvent
|
|
{
|
|
/// <summary>
|
|
/// Id of the default <see cref="RadioChannelPrototype"/> that will get addressed when using the
|
|
/// department/default channel prefix. See <see cref="SharedChatSystem.DefaultChannelKey"/>.
|
|
/// </summary>
|
|
public string? Channel;
|
|
|
|
public SlotFlags TargetSlots => ~SlotFlags.POCKET;
|
|
}
|