From 4193414f10222043b8a54e9f9c341f604eddb628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Valor=20Mart=C3=ADnez?= Date: Tue, 6 Sep 2022 21:58:25 +0200 Subject: [PATCH] Antes de rehacer todo el engine de colisiones --- source/game.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/game.cpp b/source/game.cpp index e2f568a..6089d40 100644 --- a/source/game.cpp +++ b/source/game.cpp @@ -192,11 +192,9 @@ void Game::render() // Pasa la información de debug void Game::updateDebugInfo() { - debug->add("MIRA! MIRA ELS SLOTS!"); debug->add("X = " + std::to_string((int)player->x) + ", Y = " + std::to_string((int)player->y)); debug->add("VX = " + std::to_string(player->vx).substr(0,4) + ", VY = " + std::to_string(player->vy).substr(0,4)); debug->add("STATE = " + std::to_string(player->state)); - debug->add("VEUS??"); } // Pone la información de debug en pantalla