new-horizons/NewHorizons/External/ProcGenModule.cs
Nick J. Connors c977cb5333 Decluttered logs and added asteroid belts
Also includes some basic proc gen
2021-12-19 02:37:52 -05:00

16 lines
319 B
C#

using NewHorizons.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External
{
public class ProcGenModule : Module
{
public float Scale { get; set; }
public MColor32 Color { get; set; }
}
}