KLightSession.cs 469 B

12345678910111213141516
  1. using Ryujinx.HLE.HOS.Kernel.Common;
  2. namespace Ryujinx.HLE.HOS.Kernel.Ipc
  3. {
  4. class KLightSession : KAutoObject
  5. {
  6. public KLightServerSession ServerSession { get; }
  7. public KLightClientSession ClientSession { get; }
  8. public KLightSession(KernelContext context) : base(context)
  9. {
  10. ServerSession = new KLightServerSession(context, this);
  11. ClientSession = new KLightClientSession(context, this);
  12. }
  13. }
  14. }