diff --git a/Devices/Keyboard/ColorBrushes/IBrush.cs b/Devices/Keyboard/ColorBrushes/IBrush.cs new file mode 100644 index 0000000..7ca448e --- /dev/null +++ b/Devices/Keyboard/ColorBrushes/IBrush.cs @@ -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); + } +} \ No newline at end of file