1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
RGB.NET/RGB.NET.Brushes/Decorators/IGradientDecorator.cs
Darth Affe 2086b3729d Replaced effects with decorators.
Decorators should be way more flexible while beeing easy to use.
2017-09-05 13:44:23 +02:00

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
{ }
}