mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-14 14:11:04 +00:00
17 lines
No EOL
367 B
C#
17 lines
No EOL
367 B
C#
namespace Ryujinx.Horizon.Prepo
|
|
{
|
|
class PrepoMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
PrepoIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
} |