mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-06 18:09:26 +00:00
14 lines
No EOL
325 B
C#
14 lines
No EOL
325 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
class KTransferMemory
|
|
{
|
|
public ulong Address { get; private set; }
|
|
public ulong Size { get; private set; }
|
|
|
|
public KTransferMemory(ulong Address, ulong Size)
|
|
{
|
|
this.Address = Address;
|
|
this.Size = Size;
|
|
}
|
|
}
|
|
} |