17 lines
423 B
C
Raw Normal View History

#include "main.h"
#ifndef EVENEMENT_H
#define EVENEMENT_H
2023-12-12 13:57:52 +01:00
int MangerPastille(PIXELS *serpent, PIXELS* pastilles,unsigned long *score);
2023-12-12 13:57:52 +01:00
void DeplacementSerpent(int direction ,PIXELS *serpent, int longueur);
void InitialiserPastilles(PIXELS *pastilles);
void AfficherTimerEtScore(int m,int n,unsigned long *score);
2023-12-12 13:57:52 +01:00
int PastilleSurSerpent(PIXELS pastille, PIXELS *serpent, int longueur_serpent);
#endif