2023-11-23 01:26:15 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2023-11-30 20:50:39 +01:00
|
|
|
#include "fenetre.h"
|
|
|
|
#include "plateau_init.h"
|
2023-12-10 00:36:22 +01:00
|
|
|
#include <graph.h>
|
|
|
|
|
|
|
|
|
2023-11-23 01:26:15 +01:00
|
|
|
|
|
|
|
|
2023-11-30 20:50:39 +01:00
|
|
|
int main(void) {
|
2023-11-23 01:26:15 +01:00
|
|
|
|
2023-12-10 00:36:22 +01:00
|
|
|
InitialiserGraphique();
|
|
|
|
|
|
|
|
/*initialisation de la taille de la fenetre de jeux*/
|
|
|
|
|
|
|
|
CreerFenetre(10,10,1450,840);
|
2023-12-07 11:16:30 +01:00
|
|
|
|
|
|
|
|
2023-12-01 19:06:10 +01:00
|
|
|
start();
|
|
|
|
|
2023-12-10 00:36:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Touche();
|
|
|
|
FermerGraphique();
|
|
|
|
|
2023-11-23 01:26:15 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|