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-23 16:23:43 +01:00
|
|
|
unsigned char deplacement (struct adresse* pointeur, unsigned char* sens, unsigned char* retard, short int* compteur, unsigned long* acceleration, int numsprite);
|
2023-12-11 16:19:17 +01:00
|
|
|
|
|
|
|
#endif /* DEPLACEMENT_H */
|