aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Horizon/LogManager/LmMain.cs
blob: 8c0262ac67b577405b74f63b955df19b7c3154d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Horizon.LogManager
{
    class LmMain : IService
    {
        public static void Main()
        {
            LmIpcServer ipcServer = new LmIpcServer();

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