KLightSession init

This commit is contained in:
gdkchan 2019-01-02 16:05:37 -03:00
parent e1c896255b
commit e2eeec8179

View file

@ -7,6 +7,14 @@ namespace Ryujinx.HLE.HOS.Kernel.Ipc
public KLightServerSession ServerSession { get; }
public KLightClientSession ClientSession { get; }
public KLightSession(Horizon system) : base(system) { }
private bool _hasBeenInitialized;
public KLightSession(Horizon system) : base(system)
{
ServerSession = new KLightServerSession(system, this);
ClientSession = new KLightClientSession(system, this);
_hasBeenInitialized = true;
}
}
}