| 1039 | } |
| 1040 | |
| 1041 | bool PluginManager::CanInvokeHotkey(const std::string &command, df::viewscreen *top) |
| 1042 | { |
| 1043 | Plugin *plugin = getPluginByCommand(command); |
| 1044 | return plugin ? plugin->can_invoke_hotkey(command, top) : true; |
| 1045 | } |
| 1046 | |
| 1047 | void PluginManager::OnUpdate(color_ostream &out) |
| 1048 | { |
no test coverage detected