2022-12-11 15:08:32 +01:00
|
|
|
#ifndef _JEU_H
|
|
|
|
#define _JEU_H
|
2022-11-29 17:20:19 +01:00
|
|
|
#define delta 1000000L
|
2022-11-28 10:16:28 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int ToucheT();
|
2022-11-29 23:00:51 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int compteur(int seconde);
|
2022-12-01 13:35:57 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int tricher(int** grille, int difficulte, int i, int f);
|
2022-12-01 13:35:57 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int GrilleComplete(int** grille, int l, int c);
|
2022-12-02 18:53:02 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int ComparerCartes(int carte1, int carte2);
|
2022-11-29 01:21:04 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
int** DeuxiemeCarte(int ** grille, int carte,int nomCarte, int f, int i, int difficulte, int tempsdepart);
|
2022-11-29 01:21:04 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
void * PremiereCarte(int** grille, int difficulte);
|
2022-11-29 01:21:04 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
void jeu(int** grille, int difficulte);
|
2022-11-28 10:16:28 +01:00
|
|
|
|
2022-12-11 15:08:32 +01:00
|
|
|
void ChargerDifficulte(int difficulte);
|
|
|
|
|
|
|
|
#endif
|