13 lines
251 B
C
13 lines
251 B
C
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
|
|
void afficherMenuPrincipal(void);
|
|
void afficherMenuModesDeJeu(void);
|
|
void afficherMenuGameOver(void);
|
|
int attendreChoixGameOver(void);
|
|
int attendreChoixModesDeJeu(void);
|
|
int attendreChoixMenu(void);
|
|
|
|
#endif /*MENU_H*/
|