mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 11:30:06 +02: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;
|
|
}
|
|
} |