1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00

10 lines
163 B
C#

using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Brushes.Gradient
{
public interface IGradient
{
Color GetColor(float offset);
}
}