14 lines
200 B
C#
14 lines
200 B
C#
|
using System;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BitGames.Terrain
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public struct Biome
|
|||
|
{
|
|||
|
public string Name;
|
|||
|
public Color MainColor;
|
|||
|
public Color SecondaryColor;
|
|||
|
}
|
|||
|
}
|