diff options
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r-- | src/gameplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp index d846373..3a3d09b 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -222,7 +222,7 @@ int Game::tick() const if (en->hp != 0 && // check for player death (one shot one kill) CheckCollisionCircles((Vector2){player->posX, player->posY}, 10, (Vector2){en->posX, en->posY}, 40)) { - return (1); + std::cout << "cool" << std::endl; } } return (0); |