using Ryujinx.HLE.HOS.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services { class DummyService : IpcService { private Dictionary _commands; public override IReadOnlyDictionary Commands => _commands; public string ServiceName { get; set; } public DummyService(string serviceName) { _commands = new Dictionary(); ServiceName = serviceName; } } }