diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/FrozenSealState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/FrozenSealState.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/FrozenSealState.cs b/Client/Assets/Scripts/XMainClient/UI/FrozenSealState.cs new file mode 100644 index 00000000..5795e7bb --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/FrozenSealState.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient.UI
+{
+ public enum FrozenSealState
+ {
+ None,
+ Fetched,
+ UnFinish,
+ LeaveFor,
+ CanFetch
+ }
+}
|