This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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;
|
|
}
|
|
}
|
|
} |