Rectifications DAVID

This commit is contained in:
2023-12-12 13:57:52 +01:00
parent 4d3c54c24c
commit ee032fe2e9
3 changed files with 31 additions and 31 deletions

View File

@@ -3,15 +3,15 @@
#ifndef EVENEMENT_H
#define EVENEMENT_H
int MangerPastille(int *serpent, PIXELS* pastilles,unsigned long *score);
int MangerPastille(PIXELS *serpent, PIXELS* pastilles,unsigned long *score);
void DeplacementSerpent(int direction ,int *serpent, int longueur);
void DeplacementSerpent(int direction ,PIXELS *serpent, int longueur);
void InitialiserPastilles(PIXELS *pastilles);
void AfficherTimerEtScore(int m,int n,unsigned long *score);
int PastilleSurSerpent(PIXELS pastille, int *serpent, int longueur_serpent);
int PastilleSurSerpent(PIXELS pastille, PIXELS *serpent, int longueur_serpent);
#endif