public static void main(String[] args) throws IOException {
new GraphicalApplication(new Game());
}
private void addComponents() {
final Container contentPane = new FeltPanel();
contentPane.add(new LabelPanel(), BorderLayout.NORTH);
contentPane.add(gamePanel);
contentPane.add(newGamePanel, BorderLayout.SOUTH);
super.setContentPane(contentPane);
}