| 333 | } |
| 334 | |
| 335 | void World::input_mouse_button_callback(const InputManager::MouseButtonCallbackArgs& button) { |
| 336 | if(!clientStillConnecting) { |
| 337 | drawProg.input_mouse_button_callback(button); |
| 338 | drawData.cam.input_mouse_button_on_canvas_callback(*this, button); |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | void World::input_mouse_motion_callback(const InputManager::MouseMotionCallbackArgs& motion) { |
| 343 | if(!clientStillConnecting) { |
no test coverage detected