pvjc21/du7/snake
Oleksandr Hryshchenko 9e82b1296b maze
2021-05-11 17:55:34 +02:00
..
game maze 2021-05-11 17:55:34 +02:00
main.c du7 2021-04-26 21:14:45 +02:00
main.o du7 2021-04-26 21:14:45 +02:00
Makefile du7 2021-04-26 21:14:45 +02:00
README.md du7 2021-04-26 21:14:45 +02:00
snake.c maze 2021-05-11 17:55:34 +02:00
snake.h du7 2021-04-26 21:14:45 +02:00
snake.o maze 2021-05-11 17:55:34 +02:00
world.c du7 2021-04-26 21:14:45 +02:00
world.h du7 2021-04-26 21:14:45 +02:00
world.o du7 2021-04-26 21:14:45 +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).