Ryujinx/Ryujinx.HLE/HOS/Services/News/IServiceCreator.cs

12 lines
272 B
C#

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) { }
}
}