Files
pvs/semestralka1/src/game/game_over.h
2025-12-14 22:57:04 +01:00

9 lines
252 B
C

// src/game/game_over.h
#pragma once
#include "mbed.h"
#include "../hardware/button.h"
// Displays game over message with elapsed time.
// Takes a Timer that was measuring game duration.
void show_game_over_screen(int seconds, ButtonHandler& button);