From 7e307fca9be66d791faba154d4a89088a934e6b6 Mon Sep 17 00:00:00 2001 From: zlotap Date: Tue, 22 Sep 2015 15:08:36 +0200 Subject: [PATCH] defined ColorBrush, added Interface as definition --- Devices/Keyboard/ColorBrushes/IBrush.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Devices/Keyboard/ColorBrushes/IBrush.cs 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