mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 21:37:44 +02:00

* lbl: Migrate service to Horizon * Fix formatting * Addresses gdkchan's feedback * Fix comments
17 lines
362 B
C#
17 lines
362 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();
|
|
}
|
|
}
|
|
}
|