Size.cs 338 B

12345678910111213141516
  1. namespace Ryujinx.Graphics.Texture
  2. {
  3. public struct Size
  4. {
  5. public int Width { get; }
  6. public int Height { get; }
  7. public int Depth { get; }
  8. public Size(int width, int height, int depth)
  9. {
  10. Width = width;
  11. Height = height;
  12. Depth = depth;
  13. }
  14. }
  15. }