Skip to content
Snippets Groups Projects
BiomeData.cs 287 B
Newer Older
Ryan Chang's avatar
Ryan Chang committed
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;
}