1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 22:13:35 +01: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;
}
}
}