diff options
| author | realtradam <[email protected]> | 2023-05-28 17:05:53 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-05-28 17:05:53 -0400 |
| commit | f54e3249d5c8fff4f7a64381c6dd7210c81f569a (patch) | |
| tree | 9143a584c40a7614ae43f94f7685810ef12c78b3 /src/main.c | |
| parent | 9bf228460712579f867fb506b1a84022fa302452 (diff) | |
| download | rodeo_sample_game-f54e3249d5c8fff4f7a64381c6dd7210c81f569a.tar.gz rodeo_sample_game-f54e3249d5c8fff4f7a64381c6dd7210c81f569a.zip | |
fix a lot, make a lot work
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -54,11 +54,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, @@ -81,6 +84,7 @@ main_loop(void) " fps: %.2f ", time_var ); + */ } } |
