mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-23 18:35:47 +00:00
1e06b28b22
* Horizon: Migrate Usb and Psc services * Fix formatting * Adresses feedback
17 lines
365 B
C#
17 lines
365 B
C#
namespace Ryujinx.Horizon.Hshl
|
|
{
|
|
class HshlMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
HshlIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|