-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove unnecessary window reference * Remove excessive whitespace * Disable warnings on compile * Add run instructions * Add the cool README
- Loading branch information
Showing
7 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,24 @@ | ||
# RoadRun | ||
*Obstacle avoidance game in C++ using object oriented design principles* | ||
An obstacle avoidance game in C++ using object oriented design principles. | ||
|
||
## Getting Started | ||
> TODO | ||
![](RoadRun_demo.gif) | ||
|
||
## How to Run | ||
Make sure [NCurses](https://invisible-island.net/ncurses/man/ncurses.3x.html) is [installed](https://www.cyberciti.biz/faq/linux-install-ncurses-library-headers-on-debian-ubuntu-centos-fedora/) with this commmand: | ||
``` | ||
sudo apt-get install libncurses5-dev libncursesw5-dev | ||
``` | ||
Compile and run with this command: | ||
``` | ||
make run | ||
``` | ||
|
||
## How to Play | ||
- Select "Play Game" to start a new game | ||
- Use left and right arrow keys to move your character: `^` | ||
- Don't hit anything! | ||
|
||
## Acknowledgements | ||
- SJSU's CMPE 135 Class taught by professor [Ron Mak](http://www.cs.sjsu.edu/~mak/CMPE135/index.html) for inspiration for this project. | ||
- All contributors | ||
- Everyone who helped play test |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters