mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
17 lines
413 B
C#
17 lines
413 B
C#
namespace RGB.NET.Devices.Asus;
|
|
|
|
/// <summary>
|
|
/// Represents a type of ASUS LED as known by the ASUS SDK
|
|
/// </summary>
|
|
public enum AsusLedType
|
|
{
|
|
/// <summary>
|
|
/// An ASUS LED that is present on a device's IAuraSyncKeyboard.Keys enumerable
|
|
/// </summary>
|
|
Key,
|
|
|
|
/// <summary>
|
|
/// An ASUS LED that is present on a device's IAuraSyncDevice.Lights enumerable
|
|
/// </summary>
|
|
Light
|
|
} |