mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
Not functional yet. This is the UI & persistence side of #572.
15 lines
386 B
C#
15 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; }
|
|
}
|
|
}
|