11 lines
226 B
C
11 lines
226 B
C
#ifndef AFFICHAGE_H
|
|
#define AFFICHAGE_H
|
|
#include "config.h"
|
|
|
|
void init_affichage(void);
|
|
void fermer_affichage(void);
|
|
void charger_image_source(char *nom_fichier);
|
|
void afficher_plateau(int grille[NB_LIGNES][NB_COLS]);
|
|
|
|
#endif
|