aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
blob: 0edbba6cbe97bf90d98be71517e02d91e3a0c82d (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 KLightServerSession : KAutoObject
    {
        private readonly KLightSession _parent;

        public KLightServerSession(KernelContext context, KLightSession parent) : base(context)
        {
            _parent = parent;
        }
    }
}