aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.Horizon/LogManager/LmMain.cs
blob: ac3cd4bb9f7f5794bd80b113af69d64f9b7c5715 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    

                           
                                                          
         
                                          
                                   

                                              


                                        
 
namespace Ryujinx.Horizon.LogManager
{
    class LmMain : IService
    {
        public static void Main(ServiceTable serviceTable)
        {
            LmIpcServer ipcServer = new();

            ipcServer.Initialize();

            serviceTable.SignalServiceReady();

            ipcServer.ServiceRequests();
            ipcServer.Shutdown();
        }
    }
}