12 lines
180 B
C
12 lines
180 B
C
|
#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
|