Position.cs 248 B

1234567891011121314
  1. namespace Ryujinx.Graphics.Nvdec.Vp9.Types
  2. {
  3. internal struct Position
  4. {
  5. public int Row;
  6. public int Col;
  7. public Position(int row, int col)
  8. {
  9. Row = row;
  10. Col = col;
  11. }
  12. }
  13. }