using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.Utilities; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Friend { class INotificationService : IpcService { private UInt128 _userId; private Dictionary _commands; public override IReadOnlyDictionary Commands => _commands; public INotificationService(UInt128 userId) { _commands = new Dictionary { //{ 0, GetEvent }, //{ 1, Pop }, //{ 2, Clear }, }; _userId = userId; } } }