blob: af0594cc16ea3999331b6dc75c4790b0a9b07157 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using Ryujinx.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.OsHle.Objects
{
interface IIpcInterface
{
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
}
}
|