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

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