1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
2015-09-27 17:25:06 +02:00

12 lines
252 B
C#

using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Brushes
{
public interface IBrush
{
float Brightness { get; set; }
float Opacity { get; set; }
Color GetColorAtPoint(RectangleF rectangle, PointF point);
}
}