2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
2019-07-12 01:13:43 +00:00
|
|
|
using System.Reflection;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-02-25 04:34:16 +00:00
|
|
|
interface IIpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
IReadOnlyDictionary<int, MethodInfo> Commands { get; }
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|