diff --git a/README.md b/README.md index 9b1c3e6..7900e4b 100755 --- a/README.md +++ b/README.md @@ -17,20 +17,21 @@ A simple snake game, with terminal GUI implemented using ncurses library. - [x] Increase speed of the snake when it devours a snack. - [x] Add a scoreboard. - [ ] Fix the window-resize factor, since it gets all messy when you minimize/maximize the terminal window. -- [x] Create a 'Game' class and provide interface through that function so that the user don't have to mess with the graphics - snake and controller classes. +- [x] Create a 'Game' class and provide interface through that function so that the user don't have to mess with the graphics snake and controller classes. +- [ ] Implement the Game::printGameStatistics function to print the score and games played of each player. + --- ## Prerequisities -You need to install the following two packages: +You need to install the following packages: - __libncurses5-dev__ : Developer’s libraries for ncurses, - __libncursesw5-dev__ : Developer’s libraries for ncursesw, - __gcc__ : C\C++ compiler, - __make__ : instalation tool. -Open up a terminal and type the folllowing commands +Open up a terminal and type the folllowing commands: ```shell #make sure everything is updated @@ -62,7 +63,7 @@ Now we will install and run the program, but first let's download the repo: and enjoy playing! -__Note__: You might want to delete the objective files and keep only the src part. In that case: +__Note__: You might want to delete the objective files and keep only the src part (__clean up__). In that case: ```shell ~$ make clean ```