ISrepoService.cs 219 B

123456789
  1. namespace Ryujinx.HLE.HOS.Services.Srepo
  2. {
  3. [Service("srepo:a")] // 5.0.0+
  4. [Service("srepo:u")] // 5.0.0+
  5. class ISrepoService : IpcService
  6. {
  7. public ISrepoService(ServiceCtx context) { }
  8. }
  9. }