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