aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
blob: 1ea2205d0bb8bef5367ce540e47e19cb7ae14a45 (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 KLightSession _parent;

        public KLightServerSession(Horizon system, KLightSession parent) : base(system)
        {
            _parent = parent;
        }
    }
}