rjx-mirror/Ryujinx/OsHle/Handles/HSessionObj.cs
2018-02-04 20:08:20 -03:00

12 lines
No EOL
250 B
C#

namespace Ryujinx.OsHle.Handles
{
class HSessionObj : HSession
{
public object Obj { get; private set; }
public HSessionObj(HSession Session, object Obj) : base(Session)
{
this.Obj = Obj;
}
}
}