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

@@ -2,6 +2,7 @@ import 'package:wolf_3d_data_types/wolf_3d_data_types.dart';
abstract class EngineAudio {
WolfensteinData? activeGame;
Future<void> debugSoundTest();
void playMenuMusic();
void playLevelMusic(WolfLevel level);
void stopMusic();

View File

@@ -31,4 +31,9 @@ class CliSilentAudio implements EngineAudio {
@override
void dispose() {}
@override
Future<void> debugSoundTest() async {
return Future.value(null);
}
}