1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-04 07:22:04 +00:00
Ryujinx/Ryujinx.HLE/HOS/Kernel/KServerPort.cs

14 lines
290 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
class KServerPort : KSynchronizationObject
{
2018-12-01 20:01:59 +00:00
private KPort _parent;
2018-12-01 20:01:59 +00:00
public KServerPort(Horizon system) : base(system) { }
2018-12-01 20:01:59 +00:00
public void Initialize(KPort parent)
{
2018-12-01 20:01:59 +00:00
this._parent = parent;
}
}
}