}
public void newGamePanel(Game game, boolean mutableSlots, PlayerSlot[] slots) {
Container pane = this.getContentPane();
cleanContentPane();
gamePanel = new GamePanel(this, game);
gamePanel.showCreateGamePanel(mutableSlots, slots);
pane.add(gamePanel);
pane.setVisible(true);
}