mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 11:20:17 +00:00
14 lines
305 B
C#
14 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();
|
|
}
|
|
}
|
|
}
|