Projets_Loryne/Scolaire/Dev/C/MEMORY/jeu.h

19 lines
382 B
C
Raw Permalink Normal View History

2023-04-20 14:12:27 +02:00
#ifndef JEU_H
#define JEU_H
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#define COTE_CARRE 150
#define ECART 5
#define MARGE 120
void retournerCarte(int numCarte, int* cartes, int x, int y);
void cacherCarte(int carte, int** positions);
int verifPaire(int carte1, int carte2, int* cartes);
void jeu(int** positions, int* cartes, int colonnes, int lignes);
#endif