aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs b/Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs
new file mode 100644
index 00000000..9863a374
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Kernel/KHandleEntry.cs
@@ -0,0 +1,17 @@
+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)
+ {
+ this.Index = Index;
+ }
+ }
+} \ No newline at end of file