diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/ItemEnum.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/ItemEnum.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/ItemEnum.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/ItemEnum.cs b/Client/Assets/Scripts/XMainClient/ItemEnum.cs new file mode 100644 index 00000000..836ab9fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/ItemEnum.cs @@ -0,0 +1,31 @@ +using System;
+
+namespace XMainClient
+{
+ public enum ItemEnum
+ {
+ GOLD = 1,
+ SKILL_POINT_TWO,
+ EXP = 4,
+ SKILL_POINT,
+ FATIGUE,
+ DRAGON_COIN,
+ VIP_POINT,
+ DIAMOND,
+ PARTNERCOIN = 11,
+ AWAKE_POINT = 41,
+ AWAKE_SKILL_POINT,
+ AWAKE_SKILL_POINT_TWO,
+ HORNOR_POINT = 21,
+ GUILD_CONTRIBUTE,
+ DICE = 28,
+ CHAT_LANNIAO = 51,
+ VIRTUAL_ITEM_MAX = 50,
+ HAIR_COLORING = 52,
+ FINDBACK_ITEM = 70,
+ FLOWER_RED_ROSE = 90,
+ FLOWER_WHITE_ROSE,
+ FLOWER_BLUE_ENCHANTRESS,
+ FRIEND_GIFT = 160
+ }
+}
|