SAE11_2023/JEUX_SERPENT/fonction.h
2023-12-10 13:11:43 +01:00

36 lines
688 B
C

#ifndef FONCTION_H
#define FONCTION_H
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#include <time.h>
#include <unistd.h>
extern int seconde, minute, seconde_actuel, old_seconde;
extern char timer[6];
extern unsigned long int suivant;
extern int serpent;
extern int x, y, direction, t, segment, i;
extern int pos_x[2400], pos_y[2400], old_x[2400], old_y[2400];
extern int p, pp, pomme, pommex[5], pommey[5];
extern int fond, Nbr;
extern char score[4];
extern int go_on;
void Pomme();
void Controle();
void Serpent();
void Update_Serpent();
void Terrain();
void Timer();
void Update_Timer();
void DessinerScene();
void Score();
void Collision();
void MenuDeFin();
#endif