LedConfigController.cs 386 B

123456789101112131415
  1. namespace Ryujinx.Common.Configuration.Hid.Controller
  2. {
  3. public class LedConfigController
  4. {
  5. /// <summary>
  6. /// Packed RGB int of the color
  7. /// </summary>
  8. public uint LedColor { get; set; }
  9. /// <summary>
  10. /// Enable LED color changing by the emulator
  11. /// </summary>
  12. public bool EnableLed { get; set; }
  13. }
  14. }