diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 12:38:24 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2025-01-08 12:38:24 +0100 |
commit | 9625b751757b8828b0edb0b7543c7cadfd25c119 (patch) | |
tree | 864d26cb57fe11887f4cd10923cd9a9d0b823af4 /game/player/PlayerBulletScript.cpp | |
parent | dc5d46426b30303843e8746d514db6f55ce1495b (diff) |
enemy sequence working
Diffstat (limited to 'game/player/PlayerBulletScript.cpp')
-rw-r--r-- | game/player/PlayerBulletScript.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/game/player/PlayerBulletScript.cpp b/game/player/PlayerBulletScript.cpp index 2bd067d..6beb9f1 100644 --- a/game/player/PlayerBulletScript.cpp +++ b/game/player/PlayerBulletScript.cpp @@ -1,4 +1,3 @@ -#include <iostream> #include <crepe/api/Camera.h> #include <crepe/api/Rigidbody.h> @@ -37,7 +36,6 @@ void PlayerBulletScript::despawn_bullet(){ } bool PlayerBulletScript::on_collide(const CollisionEvent& e){ - cout << "player bullet collision happened with " << e.info.other.metadata.tag << endl; this->despawn_bullet(); return false; } |