1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-06 15:02:55 -06:00

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;
}
}
}