this.setLayout(new BorderLayout());
centerPanel = new JPanel(new BorderLayout());
JPanel team1Panel = new JPanel(new BorderLayout());
this.team1List = new JList<CustomGamePlayer>();
this.team1List.setCellRenderer(new CustomGameParticipantListItemRenderer());
team1Panel.add(this.team1List, BorderLayout.CENTER);
this.addBotOnTeam1Button = new JButton("Add bot");
team1Panel.add(this.addBotOnTeam1Button,BorderLayout.SOUTH);
JPanel team2Panel = new JPanel(new BorderLayout());
this.team2List = new JList<CustomGamePlayer>();
this.team2List.setCellRenderer(new CustomGameParticipantListItemRenderer());
team2Panel.add(this.team2List, BorderLayout.CENTER);
this.addBotOnTeam2Button = new JButton("Add bot");
team2Panel.add(this.addBotOnTeam2Button,BorderLayout.SOUTH);
centerPanel.add(team1Panel,BorderLayout.WEST);
centerPanel.add(team2Panel,BorderLayout.EAST);