mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-22 07:26:50 -05:00
9 lines
233 B
C#
9 lines
233 B
C#
namespace Ryujinx.HLE.HOS.Services.Notification
|
|
{
|
|
[Service("notif:a")] // 9.0.0+
|
|
class INotificationServicesForApplication : IpcService
|
|
{
|
|
public INotificationServicesForApplication(ServiceCtx context) { }
|
|
}
|
|
}
|