new-horizons/NewHorizons/External/HeightMapModule.cs
2021-12-16 17:37:00 -05:00

17 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External
{
public class HeightMapModule : Module
{
public string HeightMap { get; set; }
public string TextureMap { get; set; }
public float MinHeight { get; set; }
public float MaxHeight { get; set; }
}
}