A modular game engine for Snakes and Ladders built in Python. Mostly written by Antigravity
- Customizable board size (default 100)
- Configurable snakes and ladders
- Multiplayer support (2-4 players)
- CLI implementation
src/: Source codegame.py: Game controllerboard.py: Board logicplayer.py: Player modeldice.py: Dice simulationmain.py: CLI entry point
tests/: Unit tests
Run the game from the command line:
python3 src/main.pyExecute the test suite:
python3 -m unittest discover tests