Add keybinding save and load functionality to CommandManager

This commit is contained in:
scawful
2024-11-10 09:03:50 -05:00
parent d7f62f4fd4
commit d118857e2e
3 changed files with 29 additions and 1 deletions

View File

@@ -43,6 +43,9 @@ class CommandManager {
void InitializeDefaults();
void SaveKeybindings(const std::string& filepath);
void LoadKeybindings(const std::string& filepath);
private:
std::unordered_map<std::string, CommandInfo> commands_;
};