pvjc22/du7/snake
2022-04-29 11:09:25 +02:00
..
main.c add 2022-04-29 11:07:53 +02:00
Makefile add 2022-04-29 11:08:25 +02:00
README.md add 2022-04-29 11:08:55 +02:00
snake.h add 2022-04-29 11:09:25 +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).