mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
30 lines
592 B
C#
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
|
|
}
|
|
}
|