| 1202 | } |
| 1203 | |
| 1204 | void Window::callOnMove(int16_t xPos, int16_t yPos) |
| 1205 | { |
| 1206 | if (eventHandlers->onMove == nullptr) |
| 1207 | { |
| 1208 | return; |
| 1209 | } |
| 1210 | |
| 1211 | this->eventHandlers->onMove(*this, xPos, yPos); |
| 1212 | } |
| 1213 | |
| 1214 | void Window::callPrepareDraw() |
| 1215 | { |
no outgoing calls
no test coverage detected