2022-05-23 18:39:19 -04:00

23 lines
420 B
C#

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;
}
}