Files
Sokoban/function.h
2024-12-12 13:08:18 +01:00

25 lines
333 B
C

#ifndef 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
typedef struct Vecteur
{
short int x;
short int y;
} vect;
unsigned short int **creatArea2D(const unsigned int N);
#endif // FONCTION_H