Newer
Older
using System;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Contains the actual data that will be used to dictate the biome.
/// </summary>
public class BiomeData
{
[Tooltip("What is used to generate the terrain shape.")]
public List<Octave> shapeMap;
}