private static void buildGui() throws InterruptedException, InvocationTargetException {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
Deal.setPreInitializedGame(constructGame());
MainController controller = new MainController();
controller.getBiddingController().getAuction().bid(new Bid(1, NoTrump.i()));
controller.getBiddingController().getAuction().bid(new Pass());
controller.getBiddingController().getAuction().bid(new Pass());
controller.getBiddingController().getAuction().bid(new Pass());
controller.getBiddingController().playGame();
}
});
}