| ## Project Structure | |
| ```text | |
| CheckerChesser/ | |
| ├── src/ | |
| │ ├── __init__.py | |
| │ ├── board_ui.py | |
| │ ├── engine.py | |
| │ ├── game_state.py | |
| │ ├── gui.py | |
| │ ├── mirror.py | |
| │ ├── overlay.py | |
| │ └── vision.py | |
| ├── tests/ | |
| │ ├── test_engine.py | |
| │ ├── test_engine_manual.py | |
| │ └── test_mirror.py | |
| ├── .gitignore | |
| ├── LICENSE | |
| ├── main.py | |
| ├── README.md | |
| ├── requirements.txt | |
| └── TECHSTACK.md | |
| ``` | |