namespace Ryujinx.Common.Configuration.Hid.Controller { public class LedConfigController { /// /// Enable LED color changing by the emulator /// public bool EnableLed { get; set; } /// /// Ignores the color and disables the LED entirely. /// public bool TurnOffLed { get; set; } /// /// Ignores the color and uses the rainbow color functionality for the LED. /// public bool UseRainbow { get; set; } /// /// Packed RGB int of the color /// public uint LedColor { get; set; } } }