mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-03-02 08:31:25 +01:00
14 lines
325 B
C#
14 lines
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;
|
|
}
|
|
}
|
|
} |