/ src / Ryujinx.Horizon / Lbl / LblMain.cs
LblMain.cs
 1  namespace Ryujinx.Horizon.Lbl
 2  {
 3      class LblMain : IService
 4      {
 5          public static void Main(ServiceTable serviceTable)
 6          {
 7              LblIpcServer ipcServer = new();
 8  
 9              ipcServer.Initialize();
10  
11              serviceTable.SignalServiceReady();
12  
13              ipcServer.ServiceRequests();
14              ipcServer.Shutdown();
15          }
16      }
17  }