diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs')
-rw-r--r-- | src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs new file mode 100644 index 00000000..3abb1ab0 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightSession.cs @@ -0,0 +1,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(KernelContext context) : base(context) + { + ServerSession = new KLightServerSession(context, this); + ClientSession = new KLightClientSession(context, this); + } + } +}
\ No newline at end of file |