INotificationServicesForSystem.cs 225 B

12345678
  1. namespace Ryujinx.HLE.HOS.Services.Notification
  2. {
  3. [Service("notif:s")] // 9.0.0+
  4. class INotificationServicesForSystem : IpcService
  5. {
  6. public INotificationServicesForSystem(ServiceCtx context) { }
  7. }
  8. }