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

10 lines
163 B
C#

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