Files
ss14-wega/Content.Shared/Chat/ChatSelectChannel.cs
Zekins 99bc2edc32 МбКульт & Gambling^3 (#279)
* refmbcult

* fixrule

* minich

* yeee

* linter

* somefixes

* cultext&gamb

* linterfix

* fixtarot
2025-12-31 18:55:15 +03:00

64 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 : ushort
{
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,
// Corvax-Wega-MindChat-start
/// <summary>
/// Mind chat
/// </summary>
Mind = ChatChannel.Mind,
// Corvax-Wega-MindChat-end
/// <summary>
/// Admin chat
/// </summary>
Admin = ChatChannel.AdminChat,
Console = ChatChannel.Unspecified
}
}