mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-02 21:32:26 -05:00
18 lines
364 B
C#
18 lines
364 B
C#
namespace Ryujinx.Horizon.LogManager
|
|
{
|
|
class LmMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
LmIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|