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

17 lines
270 B
C
Raw Normal View History

2023-04-20 14:12:27 +02:00
#ifndef CARTE_H
#define CARTE_H
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define COTE_CARRE 150
#define ECART 5
#define MARGE 120
void remplirCartes(int* cartes);
void randomRemplir(int** positions, int colonnes, int lignes, int nbrCartes);
#endif