using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } }