blob: 166de065ea9fe716b19e41c494e5c1a8417df00e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using Ryujinx.HLE.HOS.Kernel.Common;
namespace Ryujinx.HLE.HOS.Kernel.Ipc
{
class KLightSession : KAutoObject
{
public KLightServerSession ServerSession { get; }
public KLightClientSession ClientSession { get; }
public KLightSession(Horizon system) : base(system)
{
ServerSession = new KLightServerSession(system, this);
ClientSession = new KLightClientSession(system, this);
}
}
}
|