mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-17 22:31:58 +00:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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();
|
|
}
|
|
}
|
|
}
|