mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-19 17:02:40 +00:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
Normal file
14
src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightClientSession.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user