summaryrefslogtreecommitdiffhomepage
path: root/GameScreen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'GameScreen.cpp')
-rw-r--r--GameScreen.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/GameScreen.cpp b/GameScreen.cpp
index 774956e..4315060 100644
--- a/GameScreen.cpp
+++ b/GameScreen.cpp
@@ -16,11 +16,7 @@ GameScreen::update(const float dt)
m_player.update(dt);
m_generator.update(dt);
m_const.update(dt);
- bool collided = false;
- for (const auto& bullet : m_const.m_bullets) {
- if (CheckCollisionCircles(m_player.m_position, 9, bullet.position, bullet.radius))
- collided = true;
- }
+ bool collided = m_player.collide(m_const.m_bullets);
(void) collided;
}