using Ryujinx.HLE.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.HLE.OsHle.Services.Bcat { class IBcatService : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IBcatService() { m_Commands = new Dictionary() { //... }; } } }