mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
18 lines
417 B
C#
18 lines
417 B
C#
using RGB.NET.Brushes.Gradients;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Brushes
|
|
{
|
|
/// <inheritdoc />
|
|
/// <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; }
|
|
}
|
|
}
|