| 65 | void DebugMenu::update() { menuform->update(); } |
| 66 | |
| 67 | void DebugMenu::render() |
| 68 | { |
| 69 | fw().stageGetPrevious(this->shared_from_this())->render(); |
| 70 | fw().renderer->drawFilledRect(Vec2<float>(0, 0), |
| 71 | Vec2<float>(fw().displayGetWidth(), fw().displayGetHeight()), |
| 72 | Colour(0, 0, 0, 128)); |
| 73 | menuform->render(); |
| 74 | } |
| 75 | |
| 76 | bool DebugMenu::isTransition() { return false; } |
| 77 |
nothing calls this directly
no test coverage detected