aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
blob: 27a9732bef251a4e921843cce7c9a94825690eb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
        }
    }
}