1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
CUE.NET/Brushes/BrushRenderTarget.cs
Darth Affe 8d32c73b6d Refactored brushes to perform a multi-pass rendering.
This allows effects to change the calculated values.
2016-08-21 18:14:31 +02:00

30 lines
592 B
C#

// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using System.Drawing;
using CUE.NET.Devices.Keyboard.Enums;
namespace CUE.NET.Brushes
{
public class BrushRenderTarget
{
#region Properties & Fields
public CorsairKeyboardKeyId Key { get; }
public PointF Point { get; }
#endregion
#region Constructors
public BrushRenderTarget(CorsairKeyboardKeyId key, PointF point)
{
this.Point = point;
this.Key = key;
}
#endregion
}
}