2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
17 lines
364 B
C#
17 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();
|
|
}
|
|
}
|
|
}
|