diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-03-19 00:31:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-19 00:31:08 +0100 |
| commit | 39899c04076a8e9004b173320ffbb6dbf45ff3e4 (patch) | |
| tree | 36b5cdcceb2812349bd109afe65daa5c00be8d41 /Ryujinx.HLE/HOS/Services/IIpcService.cs | |
| parent | a8c945f35fceab2b735afb6b825b327032468e84 (diff) | |
IPC: Remove IIpcService interface (#2121)
This PR remove the IIpcService.cs interface usage which isn't needed anymore since the interface is only used by IpcService class. We can use it directly.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/IIpcService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/IIpcService.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Ryujinx.HLE/HOS/Services/IIpcService.cs b/Ryujinx.HLE/HOS/Services/IIpcService.cs deleted file mode 100644 index f1712491..00000000 --- a/Ryujinx.HLE/HOS/Services/IIpcService.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System.Collections.Generic; -using System.Reflection; - -namespace Ryujinx.HLE.HOS.Services -{ - interface IIpcService - { - IReadOnlyDictionary<int, MethodInfo> Commands { get; } - } -}
\ No newline at end of file |
