From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/ChatChannel.cs | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs b/Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs new file mode 100644 index 00000000..a750ed0c --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/ChatChannel.cs @@ -0,0 +1,38 @@ +using System; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "ChatChannel")] + public enum ChatChannel + { + [ProtoEnum(Name = "WorldChannel", Value = 1)] + WorldChannel = 1, + [ProtoEnum(Name = "GuildChannel", Value = 2)] + GuildChannel, + [ProtoEnum(Name = "PrivateChannel", Value = 3)] + PrivateChannel, + [ProtoEnum(Name = "SystemChannel", Value = 4)] + SystemChannel, + [ProtoEnum(Name = "LampShortChannel", Value = 5)] + LampShortChannel, + [ProtoEnum(Name = "LampLongChannel", Value = 6)] + LampLongChannel, + [ProtoEnum(Name = "TeamChannel", Value = 7)] + TeamChannel, + [ProtoEnum(Name = "CampChannel", Value = 8)] + CampChannel, + [ProtoEnum(Name = "SpectateChannel", Value = 9)] + SpectateChannel, + [ProtoEnum(Name = "CurrentChannel", Value = 10)] + CurrentChannel, + [ProtoEnum(Name = "PartnerChannel", Value = 11)] + PartnerChannel, + [ProtoEnum(Name = "AudioChannel", Value = 12)] + AudioChannel, + [ProtoEnum(Name = "BattleChannel", Value = 13)] + BattleChannel, + [ProtoEnum(Name = "GroupChatChannel", Value = 14)] + GroupChatChannel + } +} -- cgit v1.1-26-g67d0