summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IUI3DFollow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/UILib/IUI3DFollow.cs')
-rw-r--r--Client/Assets/Scripts/UILib/IUI3DFollow.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IUI3DFollow.cs b/Client/Assets/Scripts/UILib/IUI3DFollow.cs
new file mode 100644
index 00000000..9fb90dfa
--- /dev/null
+++ b/Client/Assets/Scripts/UILib/IUI3DFollow.cs
@@ -0,0 +1,10 @@
+using System;
+using UnityEngine;
+
+namespace UILib
+{
+ public interface IUI3DFollow
+ {
+ void SetPos(Vector3 pos);
+ }
+}