1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 21:30:06 -06:00
ryujinx/Ryujinx/OsHle/Handles/HSharedMem.cs

13 lines
257 B
C#

namespace Ryujinx.OsHle.Handles
{
class HSharedMem
{
public long PhysPos { get; private set; }
public long VirtPos { get; set; }
public HSharedMem(long PhysPos)
{
this.PhysPos = PhysPos;
}
}
}