diff --git a/game/src/ludo/LudoAiController.cpp b/game/src/ludo/LudoAiController.cpp index 88ae9c9..0b0f0de 100644 --- a/game/src/ludo/LudoAiController.cpp +++ b/game/src/ludo/LudoAiController.cpp @@ -18,7 +18,6 @@ void ludo::LudoAiController::update(float deltaTime) { } m_thinkTimer += deltaTime; - std::cout << "Thinking..." << std::endl; if (m_thinkTimer < kThinkDelay) return; std::cout << "Thinking done" << std::endl; @@ -34,8 +33,6 @@ void ludo::LudoAiController::update(float deltaTime) { } break; } - - } std::optional ludo::LudoAiController::chooseMove() const {