MeloNX/src/Ryujinx.HLE/Ui/ThemeColor.cs
2023-04-27 23:51:14 +02:00

18 lines
369 B
C#

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