mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-27 00:52:56 +00:00
18 lines
359 B
C#
18 lines
359 B
C#
namespace Ryujinx.Horizon.Lbl
|
|
{
|
|
class LblMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
LblIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|