summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs b/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs
new file mode 100644
index 00000000..a7f6646c
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/HeroBattleOver.cs
@@ -0,0 +1,16 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "HeroBattleOver")]
+ public enum HeroBattleOver
+ {
+ [ProtoEnum(Name = "HeroBattleOver_Win", Value = 1)]
+ HeroBattleOver_Win = 1,
+ [ProtoEnum(Name = "HeroBattleOver_Lose", Value = 2)]
+ HeroBattleOver_Lose,
+ [ProtoEnum(Name = "HeroBattleOver_Draw", Value = 3)]
+ HeroBattleOver_Draw
+ }
+}