Skip to content
GitLab
Explore
Sign in
Changes
Page history
Update Structure des fichiers
authored
May 02, 2025
by
Shakaryan Edmond
Show whitespace changes
Inline
Side-by-side
Rapport-TPI/Structure-des-fichiers.md
View page @
80b58429
```
mermaid
/mon_jeu
graph TD
├── src/
A[mon_jeu]
│ ├── main.c
│ ├── game.c / game.h
subgraph src
│ ├── player.c / player.h
A1[main.c]
│ ├── enemy.c / enemy.h
A2[game.c / game.h]
│ ├── utils.c / utils.h
A3[player.c / player.h]
│
A4[enemy.c / enemy.h]
├── tests/
A5[utils.c / utils.h]
│ ├── test_collision.c
end
│ ├── test_mouvement.c
│
subgraph tests
├── sprites/
B1[test_collision.c]
│ ├── player.png
B2[test_mouvement.c]
│ ├── enemy.png
end
│
├── Makefile
subgraph sprites
└── README.md
C1[player.png]
\ No newline at end of file
C2[enemy.png]
end
A --> src
A --> tests
A --> sprites
A --> D[Makefile]
A --> E[README.md]
```