mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-03 22:43:07 +00:00
25 lines
525 B
C#
25 lines
525 B
C#
|
using Ryujinx.Horizon.LogManager;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|