IService.cs 172 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Mig
  2. {
  3. [Service("mig:usr")] // 4.0.0+
  4. class IService : IpcService
  5. {
  6. public IService(ServiceCtx context) { }
  7. }
  8. }