Tom MOMMEJA
fbaedeee4c
This reverts commit 6cdefeda69
.
modified: graphique.c
modified: graphique.h
new file: snake
24 lines
675 B
C
24 lines
675 B
C
#ifndef GRAPHIQUE_H
|
|
#define GRAPHIQUE_H
|
|
#include <graph.h>
|
|
#include "serpent.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#define HAUTEUR 40
|
|
#define LARGEUR 60
|
|
#define TAILLE_CASE 19
|
|
#define NOMBRE_POMMES 5
|
|
#define NOMBRE_OBSTACLES 20
|
|
#define CYCLE 100000L
|
|
void Attendre(unsigned int millisecondes);
|
|
void Graphique();
|
|
void AffichageBasique();
|
|
void AfficherScore(int score);
|
|
void AfficheTemps(int minute, int seconde);
|
|
void AfficherEcranFin(int score);
|
|
int PauseJeu(int perdu);
|
|
void AfficherSerpent(Serpent* serpent);
|
|
void InitialiserJeu(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
|
|
void LibererMemoire(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
|
|
#endif
|