blob: 2baec58561f0b231e1ea2197b4a20fc973e13150 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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) { }
}
}
|