Size3D.cs 150 B

123456789
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct Size3D
  4. {
  5. public int Width;
  6. public int Height;
  7. public int Depth;
  8. }
  9. }