19 lines
360 B
C#
19 lines
360 B
C#
|
namespace Ryujinx.HLE.Ui
|
|||
|
{
|
|||
|
public 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|