feat: Add Audio Gallery screen and integrate into Debug Tools menu

feat: Implement audio playback controls and audio management in the gallery
refactor: Update audio engine interface to include stopAllAudio method

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-20 16:15:46 +01:00
parent 03dd871a46
commit 8cca66e966
11 changed files with 505 additions and 2 deletions

View File

@@ -22,6 +22,9 @@ void main() async {
runApp(
MaterialApp(
darkTheme: ThemeData.dark(useMaterial3: true),
theme: ThemeData.light(useMaterial3: true),
themeMode: ThemeMode.system,
home: wolf3d.availableGames.isEmpty
? const _NoGameDataScreen()
: GameScreen(wolf3d: wolf3d),