You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
982 B

/* ---------------------------------------
* 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
}
}