/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ffg.gui;
import ffg.game.FFGPanelException;
import ffg.game.fo.FOGameManager;
import java.io.File;
/**
*
* @author eugeneh
*/
public class FOTablePanel extends VSTablePanel {
/**
* Creates a new instance of DTTablePanel
* @param frame
* @throws FFGPanelException
*/
public FOTablePanel(FFGFrame frame) throws FFGPanelException {
super(frame);
}
public FOTablePanel(FFGFrame frame, File statsFile) throws FFGPanelException {
super(frame, statsFile);
}
@Override
protected FOGameManager createGameManager(File file) throws FFGPanelException {
if (file == null) {
return new FOGameManager();
} else {
return new FOGameManager(file);
}
}
}
|