mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-12 00:05:48 +00: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) { }
|
|
}
|
|
}
|