Files
SAE11_2025/affichage.c
T

14 lines
195 B
C
Raw Normal View History

#include "affichage.h"
#include <graph.h>
void init_affichage(void){
InitialiserGraphique();
CreerFenetre(100, 100, 800, 600);
}
void fermer_affichage(void){
FermerGraphique();
}