mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-01 04:36:26 -05:00
Refactor IPC services to have commands into separate classes, fix readme url
This commit is contained in:
10
Ryujinx.Core/OsHle/IpcServices/IIpcService.cs
Normal file
10
Ryujinx.Core/OsHle/IpcServices/IIpcService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Ryujinx.Core.OsHle.Ipc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.IpcServices
|
||||
{
|
||||
interface IIpcService
|
||||
{
|
||||
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user