mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-18 23:33:36 +00:00
17 lines
359 B
C#
17 lines
359 B
C#
namespace Ryujinx.Horizon.Psc
|
|
{
|
|
class PscMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
PscIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|