|
|
@ -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()); |
|
|
|
} |
|
|
|