This is a simple snake & ladders simulation using OOP in cpp.
You can find the instructions for this activity here
PROJECT_ROOT
├── assets/
│ ├── :
│ └── :
├── bin/
├── include/
│ ├── Board.h
│ ├── Player.h
│ └── RNG.h
├── src/
│ ├── Board.cpp
│ ├── main.cpp
│ ├── Player.cpp
│ └── RNG.cpp
├── .gitignore
├── build.sh
└── README.md
To compile the project, run:
g++ -Iinclude src/*.cpp -o bin/main -o bin/main
./build.sh # with shell scripts.g++ -Iinclude src/*.cpp -o bin/main -o bin/main && ./bin/mainTo run the project, first compile it, and then run:
bin/main