mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
29 lines
508 B
C#
29 lines
508 B
C#
using CUE.NET.Enums.Keyboard;
|
|
|
|
namespace CUE.NET.Wrapper.Keyboard
|
|
{
|
|
public class CorsairKey
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public CorsairKeyboardKeyId KeyId { get; }
|
|
public CorsairLed Led { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairKey(CorsairKeyboardKeyId keyId, CorsairLed led)
|
|
{
|
|
this.KeyId = keyId;
|
|
this.Led = led;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|