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