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

defined ColorBrush, added Interface as definition

This commit is contained in:
Jeff 2015-09-22 15:08:36 +02:00
parent de1e23ee98
commit 7e307fca9b

View File

@ -0,0 +1,11 @@
using System.Drawing.Color;
using System.Drawing.Point;
namespace CUE.NET.Devices.Keyboard.ColorBrushes
{
public interface IBrush
{
public Color getColorAtPoint(Point point);
}
}