hi danpost
this is jus a question, if yuh are building a command line game in java and yuh want to add sound like effect in it how do you go about doing it
// This creates the music
GreenfootSound Sound = new GreenfootSound("songName.wav");
// This starts it (it's looped)
Sound.playLoop()
// And you can use this to stop it
Sound.stop();