new-horizons/NewHorizons/Utility/TimeValuePair.cs
Nick 8d78c49c64 Move TimeValuePair to Utility, Ring no longer inherits from VariableSizeModule
Also migrated the old value for curve to scaleCurve.
2022-08-25 19:29:06 -04:00

19 lines
346 B
C#

using Newtonsoft.Json;
namespace NewHorizons.Utility
{
[JsonObject]
public class TimeValuePair
{
/// <summary>
/// A specific point in time
/// </summary>
public float time;
/// <summary>
/// The value for this point in time
/// </summary>
public float value;
}
}