mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-14 21:17:43 -07:00
18 lines
417 B
C#
18 lines
417 B
C#
namespace Ryujinx.Core.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;
|
|
}
|
|
}
|
|
} |