mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-14 18:52:46 -05:00
9 lines
228 B
C#
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) { }
|
|
}
|
|
} |