Rectangle.cs 386 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.Vic
  2. {
  3. readonly struct Rectangle
  4. {
  5. public readonly int X;
  6. public readonly int Y;
  7. public readonly int Width;
  8. public readonly int Height;
  9. public Rectangle(int x, int y, int width, int height)
  10. {
  11. X = x;
  12. Y = y;
  13. Width = width;
  14. Height = height;
  15. }
  16. }
  17. }