aboutsummaryrefslogtreecommitdiff
path: root/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.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/Graph/G_Graph.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/Graph/G_Graph.cs')
-rw-r--r--Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs
new file mode 100644
index 0000000..acbd102
--- /dev/null
+++ b/Assets/Packages/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs
@@ -0,0 +1,37 @@
+/* ---------------------------------------
+ * Author: Martin Pane (martintayx@gmail.com) (@tayx94)
+ * Collaborators: Lars Aalbertsen (@Rockylars)
+ * Project: Graphy - Ultimate Stats Monitor
+ * Date: 23-Jan-18
+ * Studio: Tayx
+ *
+ * This project is released under the MIT license.
+ * Attribution is not required, but it is always welcomed!
+ * -------------------------------------*/
+
+using UnityEngine;
+
+namespace Tayx.Graphy.Graph
+{
+ public abstract class G_Graph : MonoBehaviour
+ {
+ /* ----- TODO: ----------------------------
+ *
+ * --------------------------------------*/
+
+ #region Methods -> Protected
+
+ /// <summary>
+ /// Updates the graph/s.
+ /// </summary>
+ protected abstract void UpdateGraph();
+
+ /// <summary>
+ /// Creates the points for the graph/s.
+ /// </summary>
+ protected abstract void CreatePoints();
+
+ #endregion
+ }
+
+}