summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs b/Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs
new file mode 100644
index 00000000..4308671d
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/EnchantCheckResult.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace XMainClient
+{
+ internal enum EnchantCheckResult
+ {
+ ECR_OK,
+ ECR_EQUIP_TOO_LOW,
+ ECR_ITEM_TOO_LOW,
+ ECR_ITEM_TOO_HIGH,
+ ECR_INVALID
+ }
+}