aboutsummaryrefslogtreecommitdiff
path: root/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-06-09 13:18:33 -0400
committerAlee <Alee14498@gmail.com>2019-06-09 13:18:33 -0400
commit9ef63b49ccc6636d8c1bb5f1e04a2f22587d5487 (patch)
tree208a2e51d7723694fd2b411583fe858e511c3b1a /Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs
parent902b1f4e758d85fe5c30a316acf0366ed6bcb297 (diff)
downloadUnicity-9ef63b49ccc6636d8c1bb5f1e04a2f22587d5487.tar.gz
Unicity-9ef63b49ccc6636d8c1bb5f1e04a2f22587d5487.tar.bz2
Unicity-9ef63b49ccc6636d8c1bb5f1e04a2f22587d5487.zip
Added Graphy
Diffstat (limited to 'Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs')
-rw-r--r--Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs
new file mode 100644
index 0000000..5b406e9
--- /dev/null
+++ b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs
@@ -0,0 +1,30 @@
+/* ---------------------------------------
+ * Author: Martin Pane (martintayx@gmail.com) (@tayx94)
+ * Collaborators: Lars Aalbertsen (@Rockylars)
+ * Project: Graphy - Ultimate Stats Monitor
+ * Date: 03-Jan-18
+ * Studio: Tayx
+ *
+ * This project is released under the MIT license.
+ * Attribution is not required, but it is always welcomed!
+ * -------------------------------------*/
+
+namespace Tayx.Graphy.UI
+{
+ public interface IMovable
+ {
+ /* ----- TODO: ----------------------------
+ *
+ * --------------------------------------*/
+
+ /// <summary>
+ /// Sets the position of the module.
+ /// </summary>
+ /// <param name="newModulePosition">
+ /// The new position of the module.
+ /// </param>
+ void SetPosition(GraphyManager.ModulePosition newModulePosition);
+ }
+
+}
+