blob: f17124916af80d533dcb96602b7174fba256712c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
using System.Reflection;
namespace Ryujinx.HLE.HOS.Services
{
interface IIpcService
{
IReadOnlyDictionary<int, MethodInfo> Commands { get; }
}
}
|