mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 18:41:13 +02:00
10 lines
220 B
C#
10 lines
220 B
C#
using Ryujinx.Core.OsHle.Ipc;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Core.OsHle.Objects
|
|
{
|
|
interface IIpcInterface
|
|
{
|
|
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
|
|
}
|
|
} |