#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