using Ryujinx.Core.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Sfdnsres { class ServiceSfdnsres : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public ServiceSfdnsres() { m_Commands = new Dictionary() { //{ 0, Function } }; } } }