ajout rectification makefile + struct pixel

This commit is contained in:
2023-12-03 14:16:38 +01:00
parent b76b89f890
commit f8d4e822f1
6 changed files with 110 additions and 83 deletions

View File

@@ -1,6 +1,14 @@
#include "main.h"
#ifndef EVENEMENT_H
#define EVENEMENT_H
void MangerPastille(int *serpent, PIXELS* pastilles, int longueur_serpent, int longueur_pastilles);
void DeplacementSerpent(int direction ,int *serpent, int longueur);
void InitialiserPastilles(PIXELS *pastilles);
void AfficherTimerEtScore(int m,int n,int score);
void MangerPastille(int *serpent, int* pastilles, int longueur_serpent, int longueur_pastilles);
void DeplacementSerpent(int direction ,int *serpent, int longueur);
#endif