namespace UnityEditor.TerrainTools
{
///
/// An interface that represent the controller for the brush's strength.
///
public interface IBrushStrengthController : IBrushController
{
///
/// Gets and sets the brush's strength.
///
float brushStrength { get; set; }
}
}