1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-21 02:35:45 -05:00

10 lines
152 B
C#

namespace Ryujinx.Graphics.Gpu
{
struct NsGpuTexture
{
public int Width;
public int Height;
public byte[] Data;
}
}