mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:08:42 +00:00
12 lines
235 B
C#
12 lines
235 B
C#
namespace Ryujinx.Core.OsHle.Services.Nv
|
|
{
|
|
class NvMap
|
|
{
|
|
public int Handle;
|
|
public int Id;
|
|
public int Size;
|
|
public int Align;
|
|
public int Kind;
|
|
public long CpuAddress;
|
|
}
|
|
} |