From 98bbd57fd8abe621b4ca8839e110c9728d9d2b4b Mon Sep 17 00:00:00 2001 From: zlotap Date: Tue, 22 Sep 2015 17:07:12 +0200 Subject: [PATCH] refactor imports --- Devices/Keyboard/ColorBrushes/IBrush.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Devices/Keyboard/ColorBrushes/IBrush.cs b/Devices/Keyboard/ColorBrushes/IBrush.cs index 7ca448e..594ad08 100644 --- a/Devices/Keyboard/ColorBrushes/IBrush.cs +++ b/Devices/Keyboard/ColorBrushes/IBrush.cs @@ -1,11 +1,10 @@ -using System.Drawing.Color; -using System.Drawing.Point; +using System.Drawing; namespace CUE.NET.Devices.Keyboard.ColorBrushes { public interface IBrush { - public Color getColorAtPoint(Point point); + Color getColorAtPoint(Point point); } } \ No newline at end of file