diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h index bc45bf837..96423d748 100644 --- a/src/commands.h +++ b/src/commands.h @@ -114,6 +114,8 @@ namespace Commands decHandler(cacheInfo); decHandler(execute); decHandler(testsdlfont); + decHandler(enableHighlight); + decHandler(disableHighlight); void replaceVars(std::string &str); } // namespace Commands @@ -192,6 +194,8 @@ static const CommandInfo commands[] = {"open", &Commands::open}, {"execute", &Commands::execute}, {"testsdlfont", &Commands::testsdlfont}, + {"enablehighlight", &Commands::enableHighlight}, + {"disablehighlight", &Commands::disableHighlight}, {"hack", &Commands::hack} }; |