1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 02:56:47 -06:00
ryujinx/Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs

17 lines
344 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
class KHandleEntry
{
public KHandleEntry Next { get; set; }
public int Index { get; private set; }
public ushort HandleId { get; set; }
public object Obj { get; set; }
public KHandleEntry(int index)
{
Index = index;
}
}
}