Ryujinx/Ryujinx.HLE/HOS/Services/IIpcService.cs
2018-12-01 14:38:15 -06:00

10 lines
No EOL
221 B
C#

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