2023-12-21 14:32:55 +01:00
|
|
|
#ifndef GUI_H
|
|
|
|
#define GUI_H
|
|
|
|
|
2023-12-23 16:00:48 +01:00
|
|
|
void CheckScore(unsigned long nouveauScore);
|
|
|
|
void sauvegarderScore(unsigned long nouveauScore);
|
|
|
|
int lireScore();
|
|
|
|
|
2023-12-22 19:40:06 +01:00
|
|
|
void Menu();
|
2023-12-23 16:00:48 +01:00
|
|
|
void PerduGUI();
|
|
|
|
void Pause();
|
|
|
|
int AfficherGUI();
|
2023-12-24 01:48:21 +01:00
|
|
|
void AfficherTimerEtScore(long unsigned int *score, int minutes,int secondes);
|
2023-12-21 14:32:55 +01:00
|
|
|
|
|
|
|
#endif
|