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