diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-04-05 20:50:07 +0200 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-04-05 20:50:07 +0200 |
commit | 0dd7be7230b3ccba9a930c01549d79d108d091c4 (patch) | |
tree | 62f42cbf597232ed1076bb539426df8ddcf2886e /src/demo.c | |
parent | 06b9a5e3c252713c211d77b5643143276db209ba (diff) | |
parent | dc5e246ff1e8d89e59acf70c149f180fb41dd584 (diff) |
Merge branch 'dev' of https://github.com/heavydemon21/avans-arcade into dev
Diffstat (limited to 'src/demo.c')
-rw-r--r-- | src/demo.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -65,14 +65,16 @@ void hh_demo_loop(unsigned long frame) { hh_gameplay(&hh_game, &hh_game_states); break; case hh_e_state_game_over: - // todo: + // TODO: // function: show game over screen // function: after time goto high score + hh_game_states = hh_e_state_high_score; break; case hh_e_state_high_score: // todo: // fucntion: show all previously scored points // function: button pressed goto starting screen + hh_game_states = hh_e_state_starting_screen; break; default: hh_game_states = hh_e_state_starting_screen; |