This commit is contained in:
2024-12-12 11:52:03 +01:00
parent 509863f591
commit 055bec0350
4 changed files with 63 additions and 3 deletions

17
function.h Normal file
View File

@@ -0,0 +1,17 @@
#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