mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:48:32 +00:00
14 lines
297 B
C#
14 lines
297 B
C#
|
namespace Ryujinx.HLE.OsHle.Handles
|
||
|
{
|
||
|
class KSharedMemory
|
||
|
{
|
||
|
public long PA { get; private set; }
|
||
|
public long Size { get; private set; }
|
||
|
|
||
|
public KSharedMemory(long PA, long Size)
|
||
|
{
|
||
|
this.PA = PA;
|
||
|
this.Size = Size;
|
||
|
}
|
||
|
}
|
||
|
}
|