1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-11 00:16:39 +00:00
Ryujinx/Ryujinx.HLE/HOS/Kernel/Ipc/KServerPort.cs

16 lines
327 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Kernel.Common;
namespace Ryujinx.HLE.HOS.Kernel.Ipc
{
class KServerPort : KSynchronizationObject
{
private KPort _parent;
public KServerPort(Horizon system) : base(system) { }
public void Initialize(KPort parent)
{
_parent = parent;
}
}
}