18 lines
269 B
C
18 lines
269 B
C
#ifdef FONCTION_H
|
|
#define FONCTION_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define EMPTY 0
|
|
#define WALL 1
|
|
#define BOX 2
|
|
#define TARGET 3
|
|
#define BOX_ON_TARGET 4
|
|
#define PLAYER 5
|
|
#define PLAYER_ON_TARGET 6
|
|
|
|
unsigned short int **creatArea2D(const unsigned int N);
|
|
#endif // FONCTION_H
|
|
|
|
|