mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-17 16:37:04 +00:00
9 lines
150 B
C#
9 lines
150 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct Size3D
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public int Depth;
|
|
}
|
|
}
|