mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 17:37:11 +02:00
14 lines
No EOL
329 B
C#
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;
|
|
}
|
|
}
|
|
} |