IUnknown1.cs 208 B

123456789
  1. namespace Ryujinx.HLE.HOS.Services.Ngct
  2. {
  3. [Service("ngct:s")] // 9.0.0+
  4. [Service("ngct:u")] // 9.0.0+
  5. class IUnknown1 : IpcService
  6. {
  7. public IUnknown1(ServiceCtx context) { }
  8. }
  9. }