Remove unnecessary data class

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-15 20:25:28 +01:00
parent 192b69f1d1
commit b3b909a9b6
6 changed files with 62 additions and 40 deletions

View File

@@ -38,7 +38,7 @@ class Wolf3d {
List<Sprite> get walls => activeGame.walls;
List<Sprite> get sprites => activeGame.sprites;
List<PcmSound> get sounds => activeGame.sounds;
List<AdLibSound> get adLibSounds => activeGame.adLibSounds;
List<PcmSound> get adLibSounds => activeGame.adLibSounds;
List<ImfMusic> get music => activeGame.music;
List<VgaImage> get vgaImages => activeGame.vgaImages;