1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-19 13:58:16 -06:00

10 lines
199 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Reflection;
namespace Ryujinx.HLE.HOS.Services
{
interface IIpcService
{
IReadOnlyDictionary<int, MethodInfo> Commands { get; }
}
}