Files
OldThink/Content.Shared/Chat/ChatSelectChannel.cs
Spatison cced3cc98b Сообщения в ПДА 2 (#583)
* add: AdminLog

* tweak: clean up

* fix: Changeling -> Network

* add: сортировка сообщений

* fix: ТексТ
2024-08-08 13:20:06 +03:00

65 lines
1.5 KiB
C#

namespace Content.Shared.Chat
{
/// <summary>
/// Chat channels that the player can select in the chat box.
/// </summary>
/// <remarks>
/// Maps to <see cref="ChatChannel"/>, giving better names.
/// </remarks>
[Flags]
public enum ChatSelectChannel : uint
{
None = 0,
/// <summary>
/// Chat heard by players within earshot
/// </summary>
Local = ChatChannel.Local,
/// <summary>
/// Chat heard by players right next to each other
/// </summary>
Whisper = ChatChannel.Whisper,
/// <summary>
/// Radio messages
/// </summary>
Radio = ChatChannel.Radio,
/// <summary>
/// Local out-of-character channel
/// </summary>
LOOC = ChatChannel.LOOC,
/// <summary>
/// Out-of-character channel
/// </summary>
OOC = ChatChannel.OOC,
/// <summary>
/// Emotes
/// </summary>
Emotes = ChatChannel.Emotes,
/// <summary>
/// Deadchat
/// </summary>
Dead = ChatChannel.Dead,
// WD EDIT START
Cult = ChatChannel.Cult,
Changeling = ChatChannel.Changeling,
Network = ChatChannel.Network,
// WD EDIT END
/// <summary>
/// Admin chat
/// </summary>
Admin = ChatChannel.AdminChat,
Console = ChatChannel.Unspecified
}
}