mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
18 lines
304 B
C#
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;
|
|
}
|
|
}
|