mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
17 lines
393 B
C#
17 lines
393 B
C#
using RGB.NET.Brushes.Gradients;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Brushes
|
|
{
|
|
/// <summary>
|
|
/// Represents a basic gradient-brush.
|
|
/// </summary>
|
|
public interface IGradientBrush : IBrush
|
|
{
|
|
/// <summary>
|
|
/// Gets the <see cref="IGradient"/> used by this <see cref="IGradientBrush"/>.
|
|
/// </summary>
|
|
IGradient Gradient { get; }
|
|
}
|
|
}
|