All pastes #2057208 Raw Edit

Edgar Allan Pwnage

public text v1 · immutable
#2057208 ·published 2011-05-12 06:23 UTC
rendered paste body
public static void main(String[] args) throws java.net.MalformedURLException
    {
        frame = new JFrame();
        frame.setSize(600, 600);
        frame.setTitle("Main Menu");
        frame.getContentPane().setLayout(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       
        startMenu menu = new startMenu();
        //This line of code below cannot be found
        static Sound sounds = new Sound("Human Music.wav");
       
        menu.pickHumans();
        menu.pickRobots();
        menu.pickAliens();
       
        frame.remove(menu);
       
        frame.setVisible(true);
       
        sounds.playSound();
       

    }