mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
11 lines
194 B
C#
11 lines
194 B
C#
using System.Drawing.Color;
|
|
using System.Drawing.Point;
|
|
|
|
namespace CUE.NET.Devices.Keyboard.ColorBrushes
|
|
|
|
{
|
|
public interface IBrush
|
|
{
|
|
public Color getColorAtPoint(Point point);
|
|
}
|
|
} |