mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 09:18:43 +00:00
15 lines
305 B
C#
15 lines
305 B
C#
|
namespace Ryujinx.Horizon.LogManager
|
|||
|
{
|
|||
|
class LmMain : IService
|
|||
|
{
|
|||
|
public static void Main()
|
|||
|
{
|
|||
|
LmIpcServer ipcServer = new LmIpcServer();
|
|||
|
|
|||
|
ipcServer.Initialize();
|
|||
|
ipcServer.ServiceRequests();
|
|||
|
ipcServer.Shutdown();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|