using Ryujinx.HLE.HOS.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Am { class IAllSystemAppletProxiesService : IpcService { private Dictionary _commands; public override IReadOnlyDictionary Commands => _commands; public IAllSystemAppletProxiesService() { _commands = new Dictionary { { 100, OpenSystemAppletProxy } }; } public long OpenSystemAppletProxy(ServiceCtx context) { MakeObject(context, new ISystemAppletProxy()); return 0; } } }