mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 14:33:17 +01:00
18 lines
412 B
C#
18 lines
412 B
C#
|
namespace Ryujinx.OsHle.Handles
|
||
|
{
|
||
|
class HNvMap
|
||
|
{
|
||
|
public int Id { get; private set; }
|
||
|
public int Size { get; private set; }
|
||
|
|
||
|
public int Align { get; set; }
|
||
|
public int Kind { get; set; }
|
||
|
public long Address { get; set; }
|
||
|
|
||
|
public HNvMap(int Id, int Size)
|
||
|
{
|
||
|
this.Id = Id;
|
||
|
this.Size = Size;
|
||
|
}
|
||
|
}
|
||
|
}
|