1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-09-02 07:56:27 -05:00
Files
ryujinx/Ryujinx/OsHle/Handles/HNvMap.cs
gdkchan b7e1d9930d aloha
2018-02-04 20:08:20 -03:00

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