diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XTargetState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XTargetState.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XTargetState.cs b/Client/Assets/Scripts/XMainClient/XTargetState.cs new file mode 100644 index 00000000..6001a57a --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XTargetState.cs @@ -0,0 +1,11 @@ +using System;
+
+namespace XMainClient
+{
+ internal enum XTargetState
+ {
+ TS_NONE,
+ TS_ME,
+ TS_OTHER
+ }
+}
|