mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-07 19:16:26 -05:00
aloha
This commit is contained in:
12
Ryujinx/OsHle/Handles/HSessionObj.cs
Normal file
12
Ryujinx/OsHle/Handles/HSessionObj.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.OsHle.Handles
|
||||
{
|
||||
class HSessionObj : HSession
|
||||
{
|
||||
public object Obj { get; private set; }
|
||||
|
||||
public HSessionObj(HSession Session, object Obj) : base(Session)
|
||||
{
|
||||
this.Obj = Obj;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user