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