KLightSession.cs 543 B

1234567891011121314151617181920
  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. private bool _hasBeenInitialized;
  9. public KLightSession(Horizon system) : base(system)
  10. {
  11. ServerSession = new KLightServerSession(system, this);
  12. ClientSession = new KLightClientSession(system, this);
  13. _hasBeenInitialized = true;
  14. }
  15. }
  16. }