This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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;
|
|
}
|
|
}
|
|
}
|