mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 06:23:17 +01:00
13 lines
257 B
C#
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;
|
|
}
|
|
}
|
|
} |