mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 18:36:54 +00:00
26 lines
710 B
C#
26 lines
710 B
C#
namespace Ryujinx.Common.Configuration.Hid.Controller
|
|
{
|
|
public class LedConfigController
|
|
{
|
|
/// <summary>
|
|
/// Enable LED color changing by the emulator
|
|
/// </summary>
|
|
public bool EnableLed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ignores the color and disables the LED entirely.
|
|
/// </summary>
|
|
public bool TurnOffLed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ignores the color and uses the rainbow color functionality for the LED.
|
|
/// </summary>
|
|
public bool UseRainbow { get; set; }
|
|
|
|
/// <summary>
|
|
/// Packed RGB int of the color
|
|
/// </summary>
|
|
public uint LedColor { get; set; }
|
|
}
|
|
}
|