summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/SocketState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/SocketState.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/SocketState.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/SocketState.cs b/Client/Assets/Scripts/XMainClient/SocketState.cs
new file mode 100644
index 00000000..7ee8b4ec
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/SocketState.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace XMainClient
+{
+ public enum SocketState
+ {
+ State_Closed,
+ State_Connecting,
+ State_Connected
+ }
+}