mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:38:41 +00:00
14 lines
329 B
C#
14 lines
329 B
C#
|
namespace Ryujinx.HLE.OsHle.Handles
|
||
|
{
|
||
|
class KTransferMemory
|
||
|
{
|
||
|
public long Position { get; private set; }
|
||
|
public long Size { get; private set; }
|
||
|
|
||
|
public KTransferMemory(long Position, long Size)
|
||
|
{
|
||
|
this.Position = Position;
|
||
|
this.Size = Size;
|
||
|
}
|
||
|
}
|
||
|
}
|