mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
36 lines
796 B
C#
36 lines
796 B
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
using System.Drawing;
|
|
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Devices.Keyboard.Enums;
|
|
|
|
namespace CUE.NET.Devices.Keyboard.Keys
|
|
{
|
|
public class CorsairKey
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public CorsairKeyboardKeyId KeyId { get; }
|
|
public CorsairLed Led { get; }
|
|
public RectangleF KeyRectangle { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairKey(CorsairKeyboardKeyId keyId, CorsairLed led, RectangleF keyRectangle)
|
|
{
|
|
this.KeyId = keyId;
|
|
this.Led = led;
|
|
this.KeyRectangle = keyRectangle;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|