diff --git a/res/music/ScooterFriendsTurbo8Bit.wav b/res/music/ScooterFriendsTurbo8Bit.wav new file mode 100644 index 0000000..206b807 Binary files /dev/null and b/res/music/ScooterFriendsTurbo8Bit.wav differ diff --git a/src/de/teamteamteam/spacescooter/screen/MainMenuScreen.java b/src/de/teamteamteam/spacescooter/screen/MainMenuScreen.java index 4c56e02..2a6df92 100644 --- a/src/de/teamteamteam/spacescooter/screen/MainMenuScreen.java +++ b/src/de/teamteamteam/spacescooter/screen/MainMenuScreen.java @@ -9,6 +9,7 @@ import de.teamteamteam.spacescooter.background.StarBackground; import de.teamteamteam.spacescooter.control.Keyboard; import de.teamteamteam.spacescooter.entity.Player; import de.teamteamteam.spacescooter.gui.Button; +import de.teamteamteam.spacescooter.sound.SoundSystem; import de.teamteamteam.spacescooter.utility.GameConfig; /** @@ -35,6 +36,7 @@ public class MainMenuScreen extends Screen { player = new Player(GameConfig.windowWidth/2-170, 209); player.setCanMove(false); player.setCanShoot(false); + SoundSystem.playSound("music/ScooterFriendsTurbo8Bit.wav"); } @Override