IShellInterface.cs 180 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Loader
  2. {
  3. [Service("ldr:shel")]
  4. class IShellInterface : IpcService
  5. {
  6. public IShellInterface(ServiceCtx context) { }
  7. }
  8. }