HSharedMem.cs 257 B

12345678910111213
  1. namespace Ryujinx.OsHle.Handles
  2. {
  3. class HSharedMem
  4. {
  5. public long PhysPos { get; private set; }
  6. public long VirtPos { get; set; }
  7. public HSharedMem(long PhysPos)
  8. {
  9. this.PhysPos = PhysPos;
  10. }
  11. }
  12. }