14 lines
353 B
C
14 lines
353 B
C
#include "main.h"
|
|
|
|
#ifndef EVENEMENT_H
|
|
#define EVENEMENT_H
|
|
|
|
void MangerPastille(int *serpent, PIXELS* pastilles, size_t longueur_serpent, size_t longueur_pastilles);
|
|
|
|
void DeplacementSerpent(int direction ,int *serpent, int longueur);
|
|
|
|
void InitialiserPastilles(PIXELS *pastilles);
|
|
|
|
void AfficherTimerEtScore(int m,int n,int score);
|
|
|
|
#endif |