SAE11_2023/pomme.h

18 lines
408 B
C
Raw Permalink Normal View History

2023-12-22 14:07:57 +01:00
#include "serpent.h"
2023-12-22 14:40:59 +01:00
#ifndef POMME_H
#define POMME_H
2023-12-22 14:07:57 +01:00
typedef struct
{
int x;
int y;
} Pastille;
void Creation_Pastille(int z, Pastille pomme[], int longSerpent, Segment serpent[]);
void Afficher_Pastille(int z, Pastille pomme[]);
void Validation_Coordonne(int z, Pastille pomme[], int longSerpent, Segment serpent[], Pastille* nouvelle_pomme);
#define NBR_PASTILLE_INITIAL 5
2023-12-22 14:40:59 +01:00
#endif /* POMME_H */