aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Ovln/OvlnMain.cs
blob: 79afad20e6cc8fa8bdb52c95ece007c3ea78143f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.Horizon.Ovln
{
    class OvlnMain : IService
    {
        public static void Main(ServiceTable serviceTable)
        {
            OvlnIpcServer ipcServer = new();

            ipcServer.Initialize();

            serviceTable.SignalServiceReady();

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