mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
12 lines
252 B
C#
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);
|
|
}
|
|
} |