mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
18 lines
366 B
C#
18 lines
366 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;
|
|
}
|
|
}
|
|
}
|