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