17 lines
313 B
C
17 lines
313 B
C
#ifndef POMME_H
|
|
#define POMME_H
|
|
|
|
#include "../include/grille.h"
|
|
#include "../include/serpent.h"
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
} Pomme;
|
|
|
|
Pomme creerPomme();
|
|
void dessinerPomme(Pomme pomme,int id_pomme);
|
|
int verifierCollisionPommeSerpent(Pomme pomme, Segment serpent[], int longueur);
|
|
|
|
#endif /*POMME_H*/
|