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