Sicherung
This commit is contained in:
12
Kalk/Kalk.Core/KalkShortcutKeyMap.cs
Normal file
12
Kalk/Kalk.Core/KalkShortcutKeyMap.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Kalk.Core
|
||||
{
|
||||
public class KalkShortcutKeyMap : Dictionary<KalkConsoleKey, object>
|
||||
{
|
||||
public bool TryGetShortcut(KalkConsoleKey key, out object next)
|
||||
{
|
||||
return TryGetValue(key, out next);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user