ThemeColor.cs 369 B

123456789101112131415161718
  1. namespace Ryujinx.HLE.Ui
  2. {
  3. public readonly struct ThemeColor
  4. {
  5. public float A { get; }
  6. public float R { get; }
  7. public float G { get; }
  8. public float B { get; }
  9. public ThemeColor(float a, float r, float g, float b)
  10. {
  11. A = a;
  12. R = r;
  13. G = g;
  14. B = b;
  15. }
  16. }
  17. }