aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs
blob: 7ea89b20d02a987bb08570fb15200e68a071d076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.HLE.HOS.Services.News
{
    [Service("news:a")]
    [Service("news:c")]
    [Service("news:m")]
    [Service("news:p")]
    [Service("news:v")]
    class IServiceCreator : IpcService
    {
        public IServiceCreator(ServiceCtx context) { }
    }
}