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