15 lines
328 B
C
Raw Permalink 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"
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 */