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

refactor imports

This commit is contained in:
Jeff 2015-09-22 17:07:12 +02:00
parent 6241d262ec
commit 98bbd57fd8

View File

@ -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);
}
}