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