| 42 | } |
| 43 | |
| 44 | void Console::notifyWindowButtonPressed(MyGUI::Window* _sender, std::string_view _button) |
| 45 | { |
| 46 | if (_button == "close") |
| 47 | { |
| 48 | mMainWidget->setVisible(false); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | void Console::notifyMouseButtonClick(MyGUI::Widget* _sender) |
| 53 | { |
nothing calls this directly
no test coverage detected