CheckerChesser / STRUCTURE.md
algorembrant's picture
Upload 18 files
57f1366 verified
|
Raw
History Blame Contribute Delete
547 Bytes
## 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
```