You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
433 B
C#
19 lines
433 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Gaia
|
|
{
|
|
/// <summary>
|
|
/// Prototype for a world biome mask
|
|
/// </summary>
|
|
[System.Serializable]
|
|
public class ResourceProtoWorldBiomeMask
|
|
{
|
|
[Tooltip("World Biome Mask name.")]
|
|
public string m_name;
|
|
[Tooltip("Associated Biome preset.")]
|
|
public BiomePreset m_biomePreset;
|
|
|
|
}
|
|
} |