Minimal, local-only turn-based hex strategy game.
python -m venv .venv
. .venv/Scripts/activate
pip install -e .python -m hex_game
python -m hex_game.play_hexsrc/hex_game/config.py: central configuration and constantssrc/hex_game/layout.py: hex layout utilitiessrc/hex_game/generation.py: terrain and river generation helperssrc/hex_game/grid.py: board state and rule primitivessrc/hex_game/game.py: turn flow, combat resolution, CPU behaviorsrc/hex_game/render.py: arcade renderingsrc/hex_game/play_hex.py: game entrypointsrc/hex_game/runtime.py: arcade runtime helperssrc/hex_game/assets.py: local asset path resolution