| 209 | } |
| 210 | |
| 211 | void SimulationInteractionController::mouseWheelUp(IntVector2D const& mousePos, float strongness) |
| 212 | { |
| 213 | _mouseWheelAction = |
| 214 | MouseWheelAction{.up = true, .strongness = strongness, .start = std::chrono::steady_clock::now(), .lastTime = std::chrono::steady_clock::now()}; |
| 215 | } |
| 216 | |
| 217 | void SimulationInteractionController::leftMouseButtonReleased(IntVector2D const& mousePos, IntVector2D const& prevMousePos) |
| 218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected