mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
12 lines
260 B
C#
12 lines
260 B
C#
using RGB.NET.Brushes.Gradients;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Brushes
|
|
{
|
|
/// <summary>
|
|
/// Represents a basic decorator decorating a <see cref="IGradient"/>.
|
|
/// </summary>
|
|
public interface IGradientDecorator : IDecorator
|
|
{ }
|
|
}
|