using Newtonsoft.Json;
using UnityEngine;
namespace NewHorizons.External.Modules.VariableSize
{
[JsonObject]
public class VariableSizeModule
{
///
/// Scale this module over time
///
public TimeValuePair[] curve;
[JsonObject]
public class TimeValuePair
{
///
/// A specific point in time
///
public float time;
///
/// The value for this point in time
///
public float value;
}
}
}