blob: 8c0262ac67b577405b74f63b955df19b7c3154d5 (
plain) (
tree)
|
|
namespace Ryujinx.Horizon.LogManager
{
class LmMain : IService
{
public static void Main()
{
LmIpcServer ipcServer = new LmIpcServer();
ipcServer.Initialize();
ipcServer.ServiceRequests();
ipcServer.Shutdown();
}
}
}
|