mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-04 01:59:06 +00:00
Move solution and projects to src
This commit is contained in:
18
src/Ryujinx.HLE/Ui/ThemeColor.cs
Normal file
18
src/Ryujinx.HLE/Ui/ThemeColor.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user