SAE11_2023/SAE_semestre1/fichier.h/menu.h

10 lines
177 B
C
Executable File

#ifndef MENU_H
#define MENU_H
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