mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-21 20:55:49 +00:00
17 lines
426 B
C#
17 lines
426 B
C#
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KLightClientSession : KAutoObject
|
|
{
|
|
#pragma warning disable IDE0052 // Remove unread private member
|
|
private readonly KLightSession _parent;
|
|
#pragma warning restore IDE0052
|
|
|
|
public KLightClientSession(KernelContext context, KLightSession parent) : base(context)
|
|
{
|
|
_parent = parent;
|
|
}
|
|
}
|
|
}
|