| 8 | { |
| 9 | int pressed = 1; |
| 10 | void OnMessageBoxOKPressed(Lemon::GUI::Button* b){ |
| 11 | pressed = 1; |
| 12 | b->window->closed = true; |
| 13 | } |
| 14 | |
| 15 | void OnMessageBoxCancelPressed(Lemon::GUI::Button* b){ |
| 16 | pressed = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected