| 340 | } |
| 341 | |
| 342 | void World::input_mouse_motion_callback(const InputManager::MouseMotionCallbackArgs& motion) { |
| 343 | if(!clientStillConnecting) { |
| 344 | drawProg.input_mouse_motion_callback(motion); |
| 345 | drawData.cam.input_mouse_motion_callback(*this, motion); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | void World::input_mouse_wheel_callback(const InputManager::MouseWheelCallbackArgs& wheel) { |
| 350 | if(!clientStillConnecting) |
no outgoing calls
no test coverage detected