UP-Viagg-io/Viagg-io/Assets/Packages/Graphy - Ultimate Stats Mon.../Runtime/Graph/G_Graph.cs

34 lines
946 B
C#
Raw Normal View History

/* ---------------------------------------
* Author: Martin Pane (martintayx@gmail.com) (@martinTayx)
* Contributors: https://github.com/Tayx94/graphy/graphs/contributors
* Project: Graphy - Ultimate Stats Monitor
* Date: 23-Jan-18
* Studio: Tayx
*
* Git repo: https://github.com/Tayx94/graphy
*
* 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
{
#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
}
}