blob: 3d14629ca8ebeb531cd0f371d12d69b5eebd836c (
plain)
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) { }
}
}
|