/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new GameFrame( "Wumpus World" );
frame.getContentPane().setBackground( Color.WHITE );
frame.setDefaultCloseOperation(wumpusWorldConfiguration.isExitOnClose() ? JFrame.EXIT_ON_CLOSE : JFrame.DISPOSE_ON_CLOSE);
frame.setLayout(new MigLayout("", "[540px:n][grow,fill]", "[30px,top][300px,top][100px,top][grow]"));
frame.setSize( 926, 603 );
frame.setLocationRelativeTo(null); // Center in screen