using System.Collections;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
namespace Gaia
{
[System.Serializable]
public class FlattenOperationSettings : ScriptableObject
{
#region public input variables
///
/// List of all the Terrains that need to be flattened.
///
public List m_TerrainsList;
#endregion
}
}