From 3af4c218c0e70167db23a6303d2af30aff37d2fe Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 20 Aug 2020 23:40:50 -0400 Subject: Removed a bunch of stuff; Changes --- .../Scripts/Graph/G_Graph.cs | 37 ++++++++++++++++++++++ .../Scripts/Graph/G_Graph.cs.meta | 12 +++++++ 2 files changed, 49 insertions(+) create mode 100644 Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs create mode 100644 Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs.meta (limited to 'Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph') 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 + + /// + /// Updates the graph/s. + /// + protected abstract void UpdateGraph(); + + /// + /// Creates the points for the graph/s. + /// + protected abstract void CreatePoints(); + + #endregion + } + +} diff --git a/Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs.meta b/Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs.meta new file mode 100644 index 0000000..c87b143 --- /dev/null +++ b/Assets/Thirdparty/Tayx/Graphy - Ultimate Stats Monitor/Scripts/Graph/G_Graph.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 67969a520b115cd47a7d955c9b2abfa6 +timeCreated: 1516716468 +licenseType: Store +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: -- cgit v1.2.3