mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-24 01:35:46 +00:00
18 lines
365 B
C#
18 lines
365 B
C#
|
namespace Ryujinx.Horizon.Hshl
|
|||
|
{
|
|||
|
class HshlMain : IService
|
|||
|
{
|
|||
|
public static void Main(ServiceTable serviceTable)
|
|||
|
{
|
|||
|
HshlIpcServer ipcServer = new();
|
|||
|
|
|||
|
ipcServer.Initialize();
|
|||
|
|
|||
|
serviceTable.SignalServiceReady();
|
|||
|
|
|||
|
ipcServer.ServiceRequests();
|
|||
|
ipcServer.Shutdown();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|