mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 11:26:24 +02: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;
|
|
}
|
|
}
|
|
} |