new-horizons/NewHorizons/External/HeightMapModule.cs
2022-05-12 18:51:13 -04:00

15 lines
368 B
C#

using NewHorizons.Utility;
using UnityEngine;
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; }
public MVector3 Stretch { get; set; }
}
}