2023-12-06 22:32:08 +01:00
|
|
|
#ifndef MENU_H
|
|
|
|
#define MENU_H
|
|
|
|
|
2023-12-07 18:15:48 +01:00
|
|
|
void afficherBouton(double x1, double y1, double x2, double y2, const char *texte, couleur arriere_plan, couleur bordure, couleur couleur_texte, int taille_texte);
|
2023-12-06 22:32:08 +01:00
|
|
|
void afficherMenuPrincipal(void);
|
|
|
|
void afficherMenuModesDeJeu(void);
|
|
|
|
void afficherMenuGameOver(void);
|
|
|
|
int attendreChoixGameOver(void);
|
|
|
|
int attendreChoixModesDeJeu(void);
|
|
|
|
int attendreChoixMenu(void);
|
|
|
|
|
|
|
|
#endif /*MENU_H*/
|