using Ryujinx.Core.OsHle.Ipc; using System.Collections.Generic; using static Ryujinx.Core.OsHle.IpcServices.ObjHelper; namespace Ryujinx.Core.OsHle.IpcServices.Am { class ServiceAppletOE : IIpcService { private Dictionary m_Commands; public IReadOnlyDictionary Commands => m_Commands; public ServiceAppletOE() { m_Commands = new Dictionary() { { 0, OpenApplicationProxy } }; } public long OpenApplicationProxy(ServiceCtx Context) { MakeObject(Context, new IApplicationProxy()); return 0; } } }