using Ryujinx.HLE.HOS.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Nfp { class IUserManager : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IUserManager() { m_Commands = new Dictionary() { { 0, GetUserInterface } }; } public long GetUserInterface(ServiceCtx Context) { MakeObject(Context, new IUser()); return 0; } } }