aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Ui/ThemeColor.cs
blob: c594c370bf7e985e2424c31282b8aa8fb25ae4b0 (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 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;
        }
    }
}