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

  1. package base;
  2. import java.io.IOException;
  3. import playground.LevelWithBox;
  4. import playground.Level5;
  5. import playground.Level6;
  6. import playground.Level7;
  7. public class MultiLevelGame extends GameLoop {
  8. @Override
  9. void defineLevels() {
  10. this.resetLevels();
  11. //this.addLevel(new LevelWithBox());
  12. this.addLevel(new Level5());
  13. this.addLevel(new Level6());
  14. this.addLevel(new Level7());
  15. }
  16. public static void main(String[] args) throws IOException {
  17. MultiLevelGame mlg = new MultiLevelGame();
  18. mlg.runGame(args);
  19. }
  20. }