Project Redscape is an exciting text-based card game, developed in C++ for TheGame.cpp. Immerse yourself in a world of where you must use your wits and strategy to win.
To compile the program you can use the Makefile, but you need to have make installed and set on your env variables. You can use this method by typing "make all start". This will compile and execute the game.
In case you don't have make, you can compile and run manually with g++, with this two commands:
g++ -o build/redscape -Iinclude main.cpp src/cards.cpp src/cutscenes.cpp src/utils.cpp src/combats.cpp src/engine.cpp
./build/redscape
If you want to add new functionalities or improve existing ones, follow these steps:
- Open an issue to discuss the changes.
- Fork this repository.
- Create a new branch for your contribution:
git checkout -b your-branch-name
. - Commit your changes, for example:
git commit -m 'fix: new changes'
. - Push your changes to your forked repository:
git push origin your-branch-name
. - Open a Pull Request in this repository and reference the original issue.
This project is licensed under the GPL-3.0 License. See the LICENSE file for details.