diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/HallIconState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/HallIconState.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/HallIconState.cs b/Client/Assets/Scripts/XMainClient/KKSG/HallIconState.cs new file mode 100644 index 00000000..9f597723 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/HallIconState.cs @@ -0,0 +1,14 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "HallIconState")]
+ public enum HallIconState
+ {
+ [ProtoEnum(Name = "HICONS_BEGIN", Value = 1)]
+ HICONS_BEGIN = 1,
+ [ProtoEnum(Name = "HICONS_END", Value = 2)]
+ HICONS_END
+ }
+}
|