ThemeColor.cs
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 10 public ThemeColor(float a, float r, float g, float b) 11 { 12 A = a; 13 R = r; 14 G = g; 15 B = b; 16 } 17 } 18 }