15 lines
284 B
C
Raw Normal View History

2023-12-11 16:19:17 +01:00
#ifndef DEPLACEMENT_H
#define DEPLACEMENT_H
2023-12-12 19:55:28 +01:00
#define HAUT 0
#define DROITE 1
#define BAS 2
#define GAUCHE 3
#include "plateau_init.h"
2023-12-19 13:34:32 +01:00
unsigned char deplacement (struct adresse* pointeur, unsigned char* sens, unsigned char* retard, short int* compteur);
2023-12-11 16:19:17 +01:00
#endif /* DEPLACEMENT_H */