20 lines
543 B
C#
20 lines
543 B
C#
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
||
|
|
||
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
||
|
{
|
||
|
class KLightSession : KAutoObject
|
||
|
{
|
||
|
public KLightServerSession ServerSession { get; }
|
||
|
public KLightClientSession ClientSession { get; }
|
||
|
|
||
|
private bool _hasBeenInitialized;
|
||
|
|
||
|
public KLightSession(Horizon system) : base(system)
|
||
|
{
|
||
|
ServerSession = new KLightServerSession(system, this);
|
||
|
ClientSession = new KLightClientSession(system, this);
|
||
|
|
||
|
_hasBeenInitialized = true;
|
||
|
}
|
||
|
}
|
||
|
}
|