SAE11_2023/SAE_semestre1/fichier.h/menu.h

10 lines
177 B
C
Raw Normal View History

#ifndef MENU_H
#define MENU_H
2023-12-21 12:29:12 +01:00
typedef struct {
int x, y, L, H;
} zone;
int check_zone(zone z, int x, int y);
void afficher_menu(zone jouer, zone quitter, int *jeu);
#endif