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