rawaccel/grapher/Models/Charts/EstimatedPoints.cs
2020-09-08 01:26:22 -07:00

28 lines
538 B
C#

using grapher.Models.Mouse;
namespace grapher.Models.Charts
{
public class EstimatedPoints
{
#region Constructors
public EstimatedPoints()
{
Sensitivity = new PointData();
Velocity = new PointData();
Gain = new PointData();
}
#endregion Constructors
#region Properties
public PointData Sensitivity { get; }
public PointData Velocity { get; }
public PointData Gain { get; }
#endregion Properties
}
}