mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 14:30:48 -07:00
10 lines
221 B
C#
10 lines
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; }
|
|
}
|
|
} |