namespace UnityEditor.TerrainTools
{
///
/// An interface that represent the controller for the brush's spacing.
///
public interface IBrushSpacingController : IBrushController
{
///
/// Gets the brush's spacing.
///
float brushSpacing { get; set; }
///
/// Gets and sets the bool value that determines if painting is allowed.
///
bool allowPaint { get; set; }
}
}