IServiceCreator.cs 272 B

123456789101112
  1. namespace Ryujinx.HLE.HOS.Services.News
  2. {
  3. [Service("news:a")]
  4. [Service("news:c")]
  5. [Service("news:m")]
  6. [Service("news:p")]
  7. [Service("news:v")]
  8. class IServiceCreator : IpcService
  9. {
  10. public IServiceCreator(ServiceCtx context) { }
  11. }
  12. }