2025-11-29 20:25:05 +01:00
|
|
|
#ifndef AFFICHAGE_H
|
|
|
|
|
#define AFFICHAGE_H
|
2025-11-30 16:16:27 +01:00
|
|
|
#include "config.h"
|
2025-11-29 20:25:05 +01:00
|
|
|
|
2025-12-05 21:17:40 +01:00
|
|
|
void init_affichage(int largeur_img, int hauteur_img);
|
2025-11-29 20:25:05 +01:00
|
|
|
void fermer_affichage(void);
|
2025-12-02 00:38:32 +01:00
|
|
|
void charger_image_source(char *nom_fichier);
|
2025-12-05 21:17:40 +01:00
|
|
|
void afficher_plateau(int grille[MAX_TAILLE][MAX_TAILLE],int nb_ligne,int nb_colonne,int coups, int l_case, int h_case);
|
2025-11-29 20:25:05 +01:00
|
|
|
|
2025-12-06 16:43:51 +01:00
|
|
|
/* fonction pour afficher des petites image (miniatures) correspondant aux images a coté des choix d_image dans le menu */
|
|
|
|
|
void afficher_miniatures_menu(void);
|
|
|
|
|
|
2025-11-29 20:25:05 +01:00
|
|
|
#endif
|