Space von Team 22 (Nico B. Benjamin F. Lea A.)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
619 B

package base;
import java.io.IOException;
import playground.*;
public class MultiLevelGame extends GameLoop {
public static void main(String[] args) throws IOException {
MultiLevelGame gl = new MultiLevelGame();
gl.runGame(args);
// TODO Auto-generated method stub
}
@Override
void defineLevels( ) {
//this.addLevel(new Level1());
//this.addLevel(new LevelHitTwice());
//this.addLevel(new Level3());
//this.addLevel(new LevelBoss());
//this.addLevel(new Level5());
//this.addLevel(new Level6());
//this.addLevel(new Level7());
this.addLevel(new LevelWithBox());
}
}