|
|
@ -2,13 +2,7 @@ package base; |
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
|
|
|
import playground.Level1; |
|
|
|
import playground.Level3; |
|
|
|
import playground.Level5; |
|
|
|
import playground.Level6; |
|
|
|
import playground.Level7; |
|
|
|
import playground.LevelBoss; |
|
|
|
import playground.LevelHitTwice; |
|
|
|
import playground.*; |
|
|
|
|
|
|
|
public class MultiLevelGame extends GameLoop { |
|
|
|
|
|
|
@ -27,9 +21,10 @@ public class MultiLevelGame extends GameLoop { |
|
|
|
//this.addLevel(new Level3()); |
|
|
|
//this.addLevel(new LevelBoss()); |
|
|
|
|
|
|
|
this.addLevel(new Level5()); |
|
|
|
this.addLevel(new Level6()); |
|
|
|
this.addLevel(new Level7()); |
|
|
|
//this.addLevel(new Level5()); |
|
|
|
//this.addLevel(new Level6()); |
|
|
|
//this.addLevel(new Level7()); |
|
|
|
this.addLevel(new LevelWithBox()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|