|
|
@ -2,20 +2,18 @@ package base; |
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
|
|
|
import playground.Level1; |
|
|
|
import playground.LevelHitTwice; |
|
|
|
import playground.Level3; |
|
|
|
import playground.LevelBoss; |
|
|
|
import playground.Level5; |
|
|
|
import playground.Level6; |
|
|
|
import playground.Level7; |
|
|
|
|
|
|
|
public class MultiLevellGame extends GameLoop{ |
|
|
|
|
|
|
|
@Override |
|
|
|
void defineLevels() { |
|
|
|
this.resetLevels(); |
|
|
|
this.addLevel(new Level1()); |
|
|
|
this.addLevel(new LevelHitTwice()); |
|
|
|
this.addLevel(new Level3()); |
|
|
|
this.addLevel(new LevelBoss()); |
|
|
|
this.addLevel(new Level5()); |
|
|
|
this.addLevel(new Level6()); |
|
|
|
this.addLevel(new Level7()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|