Fix door opening sound

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-16 17:42:16 +01:00
parent bc74f7beee
commit bd486e4c82
9 changed files with 27 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
include: package:flutter_lints/flutter.yaml
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
formatter:
trailing_commas: preserve

View File

@@ -33,6 +33,11 @@ class FlutterAudioAdapter implements EngineAudio {
Wolf3d.I.audio.dispose();
}
@override
Future<void> debugSoundTest() async {
Wolf3d.I.audio.debugSoundTest();
}
@override
WolfensteinData? get activeGame => Wolf3d.I.activeGame;