1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
2015-09-22 17:07:12 +02:00

10 lines
153 B
C#

using System.Drawing;
namespace CUE.NET.Devices.Keyboard.ColorBrushes
{
public interface IBrush
{
Color getColorAtPoint(Point point);
}
}