mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-06 12:29:15 +00:00
18 lines
371 B
C#
18 lines
371 B
C#
namespace Ryujinx.Horizon.Bcat
|
|
{
|
|
internal class BcatMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
BcatIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|