Ryujinx/Ryujinx.HLE/Ui/ThemeColor.cs

19 lines
369 B
C#
Raw Normal View History

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;
}
}
}