()
| 95 | |
| 96 | # --- GAME LOGIC & STATE TRANSITIONS --- |
| 97 | def start_game(): |
| 98 | global game_state |
| 99 | if game_state == "start": |
| 100 | game_state = "playing" |
| 101 | scoreboard.update_scoreboard() |
| 102 | |
| 103 | def toggle_pause_resume(): |
| 104 | global game_state |
no test coverage detected