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
569 B

package base;
import java.io.IOException;
import playground.Level1;
import playground.LevelHitTwice;
import playground.Level3;
import playground.LevelBoss;
public class MultiLevellGame extends GameLoop{
@Override
void defineLevels() {
this.resetLevels();
this.addLevel(new Level1());
this.addLevel(new LevelHitTwice());
this.addLevel(new Level3());
this.addLevel(new LevelBoss());
}
public static void main(String[] args) throws IOException {
MultiLevellGame gl = new MultiLevellGame();
gl.runGame(args);
}
}