aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
blob: 1ff37282f346e7cff61efc8016641481ce881aa5 (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
    {
#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;
        }
    }
}