summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
authorarngo <[email protected]>2023-05-28 17:07:52 -0400
committerarngo <[email protected]>2023-05-28 17:07:52 -0400
commitf957f91efd243a87f17c565918d55470736182fa (patch)
tree909e68cd697da7621cd9c30ea2e13aee911e9de4 /src/main.c
parent81859447e9b004a142fa126326a74aed4e8e805d (diff)
parentb3c02a644b9412f07c95621385488954c5b98dfc (diff)
downloadTOJam2023-f957f91efd243a87f17c565918d55470736182fa.tar.gz
TOJam2023-f957f91efd243a87f17c565918d55470736182fa.zip
Merge branch 'master' of github.com:realtradam/TOJam2023
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 2024eb9..81e0248 100644
--- a/src/main.c
+++ b/src/main.c
@@ -55,11 +55,14 @@ main_loop(void)
draw_bullets();
draw_player();
draw_enemies();
+ draw_hp_bar();
detect_bullet_enemy_collisions();
detect_bullet_wall_collisions();
detect_player_enemy_collisions();
detect_player_wall_collisions();
+ detect_enemy_wall_collisions();
+ /*
rodeo_debug_text_draw(
1,
1,
@@ -82,6 +85,7 @@ main_loop(void)
" fps: %.2f ",
time_var
);
+ */
}
}