20 lines
420 B
C#
20 lines
420 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace Assets.Scripts.Model.Config
|
|||
|
{
|
|||
|
[XmlRoot("terrgenConfig")]
|
|||
|
public class TerrainGeneratorConfig
|
|||
|
{
|
|||
|
public int NoiseOctaves { get; set; }
|
|||
|
|
|||
|
public float NoiseNonLinearPower { get; set; }
|
|||
|
|
|||
|
public float ElevationScale { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|