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

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