Miscellany
public text v1 · immutable public void gameOver(String a){
content.remove(score);
score.setEditable(false);
score = new JTextArea(a);
score.setSize(5, 30);
score.setFont(new Font("arial",3,50));
content.add(score,BorderLayout.EAST);
pack();
repaint();
}