Ryujinx/Ryujinx.Graphics.GAL/Color/ColorUI.cs
2020-01-09 02:13:00 +01:00

19 lines
413 B
C#

namespace Ryujinx.Graphics.GAL.Color
{
public struct ColorUI
{
public uint Red { get; }
public uint Green { get; }
public uint Blue { get; }
public uint Alpha { get; }
public ColorUI(uint red, uint green, uint blue, uint alpha)
{
Red = red;
Green = green;
Blue = blue;
Alpha = alpha;
}
}
}