using RGB.NET.Brushes.Gradients; using RGB.NET.Core; namespace RGB.NET.Brushes { /// /// Represents a basic gradient-brush. /// public interface IGradientBrush : IBrush { /// /// Gets the used by this . /// IGradient Gradient { get; } } }