2022-05-17 20:05:58 -04:00

13 lines
347 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External.Modules
{
public class HeightMapModule
{
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; }
}
}