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.
 
 
 
 

26 lines
561 B

package base;
import java.io.IOException;
import playground.LevelWithBox;
import playground.Level5;
import playground.Level6;
import playground.Level7;
public class MultiLevelGame extends GameLoop {
@Override
void defineLevels() {
this.resetLevels();
this.addLevel(new LevelWithBox());
this.addLevel(new Level5());
this.addLevel(new Level6());
this.addLevel(new Level7());
}
public static void main(String[] args) throws IOException {
MultiLevelGame mlg = new MultiLevelGame();
mlg.runGame(args);
}
}