diff options
Diffstat (limited to 'Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs')
| -rw-r--r-- | Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs b/Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs new file mode 100644 index 0000000..5ec0a14 --- /dev/null +++ b/Assets/Thirdparty/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
+ }
+
+}
|
