public VisualizationPanel(Game theGame)
{
super(new GridBagLayout());
this.theGame = theGame;
this.myThis = this;
this.timerBar = new JTimerBar();
this.rt = new RenderThread();
this.rt.start();
this.add(tabs, new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(5, 5, 5, 5), 5, 5));
this.add(timerBar, new GridBagConstraints(0, 1, 1, 1, 1.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(5, 5, 5, 5), 5, 5));
}