mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
13 lines
347 B
C#
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; }
|
|
}
|
|
}
|