mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 15:00:48 -07:00
14 lines
285 B
C#
14 lines
285 B
C#
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
class KServerPort : KSynchronizationObject
|
|
{
|
|
private KPort _parent;
|
|
|
|
public KServerPort(Horizon system) : base(system) { }
|
|
|
|
public void Initialize(KPort parent)
|
|
{
|
|
_parent = parent;
|
|
}
|
|
}
|
|
} |