From 9ef63b49ccc6636d8c1bb5f1e04a2f22587d5487 Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 9 Jun 2019 13:18:33 -0400 Subject: Added Graphy --- .../Scripts/UI/IModifiableState.cs | 28 ++++++++++++++++++++ .../Scripts/UI/IModifiableState.cs.meta | 12 +++++++++ .../Scripts/UI/IMovable.cs | 30 ++++++++++++++++++++++ .../Scripts/UI/IMovable.cs.meta | 12 +++++++++ 4 files changed, 82 insertions(+) create mode 100644 Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs create mode 100644 Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs.meta create mode 100644 Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs create mode 100644 Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs.meta (limited to 'Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI') diff --git a/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs new file mode 100644 index 0000000..315996d --- /dev/null +++ b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs @@ -0,0 +1,28 @@ +/* --------------------------------------- + * 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 IModifiableState + { + /* ----- TODO: ---------------------------- + * --------------------------------------*/ + + /// + /// Set the module state. + /// + /// + /// The new state. + /// + void SetState(GraphyManager.ModuleState newState, bool silentUpdate); + } + +} diff --git a/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs.meta b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs.meta new file mode 100644 index 0000000..2de655d --- /dev/null +++ b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IModifiableState.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cbc1852edf51f8046aed2f13ea532ea9 +timeCreated: 1514998527 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: 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: ---------------------------- + * + * --------------------------------------*/ + + /// + /// Sets the position of the module. + /// + /// + /// The new position of the module. + /// + void SetPosition(GraphyManager.ModulePosition newModulePosition); + } + +} + diff --git a/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs.meta b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs.meta new file mode 100644 index 0000000..a850fd7 --- /dev/null +++ b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/UI/IMovable.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8a935302390075f45843775173889f94 +timeCreated: 1514998535 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: -- cgit v1.2.3