2023-03-18 16:28:05 -04:00

14 lines
286 B
C#

using Newtonsoft.Json;
using UnityEngine;
namespace NewHorizons.External.Modules.VariableSize
{
[JsonObject]
public class VariableSizeModule
{
/// <summary>
/// Scale this object over time
/// </summary>
public TimeValuePair[] curve;
}
}