KLightSession init
This commit is contained in:
parent
e1c896255b
commit
e2eeec8179
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue