mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-07 11:45:26 +00:00

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