0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 11:21:40 +00:00
ryujinx-fork/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs

14 lines
329 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Kernel.Common;
namespace Ryujinx.HLE.HOS.Kernel.Ipc
{
class KLightClientSession : KAutoObject
{
private readonly KLightSession _parent;
public KLightClientSession(KernelContext context, KLightSession parent) : base(context)
{
_parent = parent;
}
}
}