so_long is a graphical project made for the 42 curriculum. It is a 2D game where the player must explore a map, collect all items, and reach the exit while avoiding enemies.
To compile the project, simply run:
makeThe Makefile automatically handles the installation of the minilibx-linux library and the compilation of libft.
To clean object files:
make cleanTo remove binaries, objects, libft, and minilibx-linux:
make fcleanTo fully recompile:
make reAfter compilation, launch the game with:
./so_long maps/map_name.ber- The player (P) must collect all collectibles (C) to open the exit (E).
- Walls are represented by '1', empty spaces by '0'.
- Enemies (D) may be present depending on the map.
- Reach the exit after collecting everything to win.
- minilibx-linux (installed automatically)
- libft (provided in the project)
Maj-e