2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
17 lines
359 B
C#
17 lines
359 B
C#
namespace Ryujinx.Horizon.Psc
|
|
{
|
|
class PscMain : IService
|
|
{
|
|
public static void Main(ServiceTable serviceTable)
|
|
{
|
|
PscIpcServer ipcServer = new();
|
|
|
|
ipcServer.Initialize();
|
|
|
|
serviceTable.SignalServiceReady();
|
|
|
|
ipcServer.ServiceRequests();
|
|
ipcServer.Shutdown();
|
|
}
|
|
}
|
|
}
|