aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/IIpcService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/IIpcService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/IIpcService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/IIpcService.cs b/Ryujinx.HLE/HOS/Services/IIpcService.cs
index f6bafe97..f1712491 100644
--- a/Ryujinx.HLE/HOS/Services/IIpcService.cs
+++ b/Ryujinx.HLE/HOS/Services/IIpcService.cs
@@ -1,10 +1,10 @@
-using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
+using System.Reflection;
namespace Ryujinx.HLE.HOS.Services
{
interface IIpcService
{
- IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
+ IReadOnlyDictionary<int, MethodInfo> Commands { get; }
}
} \ No newline at end of file