MeloNX/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
2023-04-27 23:51:14 +02:00

14 lines
No EOL
329 B
C#

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