mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
10 lines
152 B
C#
10 lines
152 B
C#
using CUE.NET.Gradients;
|
|
|
|
namespace CUE.NET.Brushes
|
|
{
|
|
public interface IGradientBrush : IBrush
|
|
{
|
|
IGradient Gradient { get; }
|
|
}
|
|
}
|