using UnityEngine; using System.Collections; using System.Collections.Generic; namespace Gaia { /// /// Prototype for a world biome mask /// [System.Serializable] public class ResourceProtoWorldBiomeMask { [Tooltip("World Biome Mask name.")] public string m_name; [Tooltip("Associated Biome preset.")] public BiomePreset m_biomePreset; } }