2023-03-25 13:51:15 -04:00

18 lines
304 B
C#

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