mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:28:33 +00:00
9 lines
208 B
C#
9 lines
208 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Ngct
|
|||
|
{
|
|||
|
[Service("ngct:s")] // 9.0.0+
|
|||
|
[Service("ngct:u")] // 9.0.0+
|
|||
|
class IUnknown1 : IpcService
|
|||
|
{
|
|||
|
public IUnknown1(ServiceCtx context) { }
|
|||
|
}
|
|||
|
}
|