A fast-paced, high-performance Gomoku game that runs directly in your terminal. This project combines Python for user interactions and C++ for the game engine, with pybind11 used to bridge the two languages.
Before you start, make sure you have the following installed on your system:
Follow these steps to install and run the Gomoku game after cloning the repository:
git clone https://your-repository-url/gomoku.git
cd gomoku
python3 -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
git submodule update --init --recursive
make
./Gomoku
cp ./pre-commit.example .git/hooks/pre-commit
chmod u+x .git/hooks/pre-commit
./format_code.sh