aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Ui/ThemeColor.cs
blob: 1a42b1673132aad2e453006031a1f49ec48b30bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
        }
    }
}