Browse Source

Korrektur, richtiger import und aufrufen des zweiten levels

master
Kai 2 years ago
parent
commit
0bdbbf29d0
  1. 4
      GameProject/src/base/MultiLevellGame.java

4
GameProject/src/base/MultiLevellGame.java

@ -3,7 +3,7 @@ package base;
import java.io.IOException;
import playground.Level1;
import playground.HitTwiceLevel;
import playground.LevelHitTwice;
import playground.Level3;
import playground.LevelBoss;
@ -13,7 +13,7 @@ public class MultiLevellGame extends GameLoop{
void defineLevels() {
this.resetLevels();
this.addLevel(new Level1());
this.addLevel(new HitTwiceLevel());
this.addLevel(new LevelHitTwice());
this.addLevel(new Level3());
this.addLevel(new LevelBoss());
}

Loading…
Cancel
Save