mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-15 19:51:42 +00:00
16 lines
386 B
C#
16 lines
386 B
C#
namespace Ryujinx.Common.Configuration.Hid.Controller
|
|
{
|
|
public class LedConfigController
|
|
{
|
|
/// <summary>
|
|
/// Packed RGB int of the color
|
|
/// </summary>
|
|
public uint LedColor { get; set; }
|
|
|
|
/// <summary>
|
|
/// Enable LED color changing by the emulator
|
|
/// </summary>
|
|
public bool EnableLed { get; set; }
|
|
}
|
|
}
|