mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-19 00:42:42 +00:00
Infra: Capitalisation Consistency (#6296)
* Rename Ryujinx.UI.Common * Rename Ryujinx.UI.LocaleGenerator * Update in Files AboutWindow * Configuration State * Rename projects * Ryujinx/UI * Fix build * Main remaining inconsistencies * HLE.UI Namespace * HLE.UI Files * Namespace * Ryujinx.UI.Common.Configuration.UI * Ryujinx.UI.Common,Configuration.UI Files * More instances
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