File size: 547 Bytes
57f1366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## 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

```