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