mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-18 16:53:33 +00:00
2989c163a8
* 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();
|
|
}
|
|
}
|
|
}
|