2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
17 lines
371 B
C#
17 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();
|
|
}
|
|
}
|
|
}
|