1
0

Création d'un fichier dédié à la gestion des cartes et modification de la structure card

This commit is contained in:
2022-12-01 23:45:25 +01:00
parent 82a5c54e0c
commit 085d28f842
3 changed files with 30 additions and 11 deletions

12
include/card.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef CARD_H
#define CARD_H
typedef struct {
zone zone;
int displayed, found;
char *file;
} card;
card create_card(int x, int y, int L, int H, char *file);
#endif