Size.cs 375 B

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