| 123456789101112131415161718 |
- namespace Ryujinx.HLE.Ui
- {
- public readonly struct ThemeColor
- {
- public float A { get; }
- public float R { get; }
- public float G { get; }
- public float B { get; }
- public ThemeColor(float a, float r, float g, float b)
- {
- A = a;
- R = r;
- G = g;
- B = b;
- }
- }
- }
|