mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-11 15:55:47 +00:00
9 lines
223 B
C#
9 lines
223 B
C#
namespace Ryujinx.HLE.HOS.Services.Notification
|
|
{
|
|
[Service("notif:s")] // 9.0.0+
|
|
class INotificationServicesForSystem : IpcService
|
|
{
|
|
public INotificationServicesForSystem(ServiceCtx context) { }
|
|
}
|
|
}
|