2022-05-17 19:41:45 -04:00

13 lines
356 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External.Modules
{
public class HeightMapModule : Module
{
public string HeightMap { get; set; }
public string TextureMap { get; set; }
public float MinHeight { get; set; }
public float MaxHeight { get; set; }
public MVector3 Stretch { get; set; }
}
}