mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 12:42:25 -07:00
Move solution and projects to src
This commit is contained in:
17
src/Ryujinx.Horizon/LogManager/LmMain.cs
Normal file
17
src/Ryujinx.Horizon/LogManager/LmMain.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace Ryujinx.Horizon.LogManager
|
||||
{
|
||||
class LmMain : IService
|
||||
{
|
||||
public static void Main(ServiceTable serviceTable)
|
||||
{
|
||||
LmIpcServer ipcServer = new();
|
||||
|
||||
ipcServer.Initialize();
|
||||
|
||||
serviceTable.SignalServiceReady();
|
||||
|
||||
ipcServer.ServiceRequests();
|
||||
ipcServer.Shutdown();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user