implemented first version of the round view

This commit is contained in:
Felix Kirchner
2025-03-02 16:57:50 +01:00
parent d9e65d5426
commit 68502fa483
5 changed files with 178 additions and 11 deletions

View File

@@ -101,8 +101,8 @@ class _MainMenuViewState extends State<MainMenuView> {
void randomizeRoundNumbers() {
var random = Random();
gameSessionArray.forEach((s) {
for (var s in gameSessionArray) {
s.round = random.nextInt(20);
});
}
}
}