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

```