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.

29 lines
557 B

  1. package base;
  2. import java.io.IOException;
  3. import playground.Level1;
  4. import playground.Level3;
  5. import playground.LevelBoss;
  6. import playground.LevelHitTwice;
  7. public class MultiLevelGame extends GameLoop {
  8. public static void main(String[] args) throws IOException {
  9. GameLoop gl = new MultiLevelGame();
  10. gl.runGame(args);
  11. // TODO Auto-generated method stub
  12. }
  13. @Override
  14. void defineLevels( ) {
  15. this.addLevel(new Level1());
  16. this.addLevel(new LevelHitTwice());
  17. this.addLevel(new Level3());
  18. this.addLevel(new LevelBoss());
  19. }
  20. }