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


1 2 3 4 5 6 7 8 | // 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(); |