console = new ConsoleInterface(System.out, System.err);
this.gameInterface = gameInterface;
this.container = container;
this.constraints = constraints;
List<SelectionMenuCell> l = new ArrayList<SelectionMenuCell>();
l.add(new SelectionMenuCell(this, "restart game", new Runnable() {
public void run() {
reset();
}
}, null));
default_menu = new SelectionMenuComponent(this, SCREEN_DEFAULT, l);