| 1242 | } |
| 1243 | |
| 1244 | bool Window::callKeyUp(uint32_t charCode, uint32_t keyCode) |
| 1245 | { |
| 1246 | if (eventHandlers->keyUp == nullptr) |
| 1247 | { |
| 1248 | return false; |
| 1249 | } |
| 1250 | |
| 1251 | return eventHandlers->keyUp(*this, charCode, keyCode); |
| 1252 | } |
| 1253 | |
| 1254 | // 0x004CA4DF |
| 1255 | void Window::draw(Gfx::DrawingContext& drawingCtx) |
no outgoing calls
no test coverage detected