* Dispatch OnGameTick event over all windows */
| 3324 | * Dispatch OnGameTick event over all windows |
| 3325 | */ |
| 3326 | void CallWindowGameTickEvent() |
| 3327 | { |
| 3328 | for (Window *w : Window::Iterate()) { |
| 3329 | w->OnGameTick(); |
| 3330 | } |
| 3331 | } |
| 3332 | |
| 3333 | /** |
| 3334 | * Try to close a non-vital window. |
no test coverage detected