Added mermaid flowchart for Taskflow

This commit is contained in:
sam
2023-11-22 14:32:28 +01:00
parent 8acf5ce436
commit c09af46ce5

View File

@@ -14,3 +14,16 @@ Een flow van hoe je pagina werkt in woorden.
#### Taskflow
Bekijk top highscores -> pas settings aan -> druk start -> speel spel -> ga dood -> voer naam in voor highscores -> repeat
```mermaid
flowchart TD
A[Main menu] --> B(Scores)
B --> A
A --> C(settings)
A --> D(start)
D --> E(Begin game)
E --> F(Speel spel)
F --> H(Ga dood)
H --> I(Voer naam in voor highscore)
I --> E
I --> A
```