2022-05-22 20:08:12 -04:00

14 lines
287 B
C#

using System.ComponentModel.DataAnnotations;
using NewHorizons.Utility;
using Newtonsoft.Json;
namespace NewHorizons.External.Modules
{
[JsonObject]
public class ProcGenModule
{
public MColor color;
[Range(0, double.MaxValue)] public float scale;
}
}