2021-11-22 17:29:33 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <graph.h>
|
|
|
|
#include <time.h>
|
2021-11-24 10:24:18 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
2021-11-22 17:29:33 +01:00
|
|
|
#include "utils.h"
|
|
|
|
#include "graph_sup.h"
|
|
|
|
|
2021-11-29 00:31:21 +01:00
|
|
|
#include "taquin.h"
|
2021-11-22 17:29:33 +01:00
|
|
|
#include "lib_menu/menu.h"
|
|
|
|
|
2021-12-02 15:57:18 +01:00
|
|
|
int main(int argc, char* argv[]) {
|
2021-11-22 17:29:33 +01:00
|
|
|
InitialiserGraphique();
|
|
|
|
CreerFenetre(100, 100, 1200, 700);
|
2021-12-02 15:57:18 +01:00
|
|
|
CreateTaquin("./images/luna.png", 500, 445, 5, 5);
|
2021-11-26 12:14:37 +01:00
|
|
|
Touche();
|
2021-11-22 17:29:33 +01:00
|
|
|
FermerGraphique();
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|