summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index d928615..1078f46 100644
--- a/src/main.c
+++ b/src/main.c
@@ -188,6 +188,7 @@ main_loop(void)
draw_bullets();
draw_player();
draw_enemies();
+ detect_bullet_enemy_collisions();
rodeo_debug_text_draw(
1,
@@ -270,6 +271,9 @@ main(void)
init_player();
init_enemies();
spawn_enemy(240, 240);
+ spawn_enemy(100, 100);
+ spawn_enemy(300, 100);
+ spawn_enemy(200, 330);
rodeo_mainLoop_run(
main_loop