| 418 | void SaveMenu::update() { menuform->update(); } |
| 419 | |
| 420 | void SaveMenu::render() |
| 421 | { |
| 422 | fw().stageGetPrevious(this->shared_from_this())->render(); |
| 423 | fw().renderer->drawFilledRect(Vec2<float>(0, 0), |
| 424 | Vec2<float>(fw().displayGetWidth(), fw().displayGetHeight()), |
| 425 | Colour(0, 0, 0, 128)); |
| 426 | menuform->render(); |
| 427 | } |
| 428 | |
| 429 | bool SaveMenu::isTransition() { return false; } |
| 430 | }; // namespace OpenApoc |
nothing calls this directly
no test coverage detected