LmMain.cs 305 B

1234567891011121314
  1. namespace Ryujinx.Horizon.LogManager
  2. {
  3. class LmMain : IService
  4. {
  5. public static void Main()
  6. {
  7. LmIpcServer ipcServer = new LmIpcServer();
  8. ipcServer.Initialize();
  9. ipcServer.ServiceRequests();
  10. ipcServer.Shutdown();
  11. }
  12. }
  13. }