| 136 | } |
| 137 | |
| 138 | bool GameEditorModeConsole::executeCurrentPrompt(const CEGUI::EventArgs& e) |
| 139 | { |
| 140 | mConsoleInterface.tryExecuteClientCommand(mEditboxWindow->getText().c_str(), |
| 141 | mModeManager->getCurrentModeType(), |
| 142 | *mModeManager); |
| 143 | mEditboxWindow->setText(""); |
| 144 | return true; |
| 145 | } |
| 146 | |
| 147 | bool GameEditorModeConsole::characterEntered(const CEGUI::EventArgs& e) |
| 148 | { |
nothing calls this directly
no test coverage detected