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