HSessionObj.cs 250 B

123456789101112
  1. namespace Ryujinx.OsHle.Handles
  2. {
  3. class HSessionObj : HSession
  4. {
  5. public object Obj { get; private set; }
  6. public HSessionObj(HSession Session, object Obj) : base(Session)
  7. {
  8. this.Obj = Obj;
  9. }
  10. }
  11. }