Go to file
2021-04-21 15:03:19 +02:00
main.c zz 2021-04-21 15:03:19 +02:00
Makefile zz 2021-04-20 08:54:59 +02:00
README.md new version of world, removed game.c 2021-04-20 09:00:42 +02:00
snake.c initial 2020-04-23 17:39:46 +02:00
snake.h initial 2020-04-23 17:39:46 +02:00
world.c zz 2021-04-20 08:54:59 +02:00
world.h zz 2021-04-21 15:03:19 +02:00

Snake Master

Implement Snake game.

Make the game to pass the automatic tests and make the game to be nice.

Files

Please do not change file names.

  • snake.h: you implementation should follow this header.
  • snake.c: implemement the game according to the documentation in header file in this file to pass automatic tests.
  • Makefile: rules to build the game.
  • main.c: trivial main function that runs the game, modify this file to change the appereance of the game and the initial state.
  • world.c: world game loop and ASCII graphics library (do not change).
  • world.h: world library interface (do not change).