mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-05 03:49:17 +00:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
Normal file
14
src/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs
Normal file
@@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user