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

19 lines
419 B
C#

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