IIpcService.cs 199 B

12345678910
  1. using System.Collections.Generic;
  2. using System.Reflection;
  3. namespace Ryujinx.HLE.HOS.Services
  4. {
  5. interface IIpcService
  6. {
  7. IReadOnlyDictionary<int, MethodInfo> Commands { get; }
  8. }
  9. }