mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-25 02:10:17 -05:00
10 lines
150 B
C#
10 lines
150 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct Size3D
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public int Depth;
|
|
}
|
|
}
|