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