Files
Ryujinx/src/Ryujinx.HLE/HOS/Services/Ldn/Lp2p/IServiceCreator.cs
2023-04-27 23:51:14 +02:00

9 lines
228 B
C#

namespace Ryujinx.HLE.HOS.Services.Ldn.Lp2p
{
[Service("lp2p:app")] // 9.0.0+
[Service("lp2p:sys")] // 9.0.0+
class IServiceCreator : IpcService
{
public IServiceCreator(ServiceCtx context) { }
}
}