using System.Collections.Generic; namespace Kalk.Core { public class KalkShortcutKeyMap : Dictionary { public bool TryGetShortcut(KalkConsoleKey key, out object next) { return TryGetValue(key, out next); } } }