mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-18 19:25:48 +00:00
11 lines
170 B
C#
11 lines
170 B
C#
namespace Ryujinx.Graphics.Vic.Image
|
|
{
|
|
struct Pixel
|
|
{
|
|
public ushort R;
|
|
public ushort G;
|
|
public ushort B;
|
|
public ushort A;
|
|
}
|
|
}
|