aboutsummaryrefslogblamecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
blob: 27a9732bef251a4e921843cce7c9a94825690eb8 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                           
                                               
 
                                                                                               



                             
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;
        }
    }
}