2023-03-25 15:21:07 -04:00

18 lines
318 B
C#

using Newtonsoft.Json;
namespace NewHorizons.External.SerializableData
{
[JsonObject]
public class MGradient
{
public MGradient(float time, MColor tint)
{
this.time = time;
this.tint = tint;
}
public float time;
public MColor tint;
}
}