2023-12-16 14:11:07 +01:00
|
|
|
#ifndef DEPLACEMENT_H
|
|
|
|
#define DEPLACEMENT_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <graph.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#define H 42
|
|
|
|
#define L 62
|
|
|
|
|
|
|
|
int CliqueTouche(int defaut, int *pause, int *fin);
|
2023-12-19 14:18:40 +01:00
|
|
|
void DeplacementQueue(int tab[H][L], int *sxmin, int *symin, int *direc,int);
|
|
|
|
void DeplacementTete(int tab[H][L], int *sxmax, int *symax, int direction, int *temoin, int *fin, int *point,int menu);
|
2023-12-16 14:11:07 +01:00
|
|
|
|
|
|
|
#endif // DEPLACEMENT_H
|