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.
24 lines
489 B
24 lines
489 B
package base;
|
|
|
|
import java.io.IOException;
|
|
|
|
import playground.Level5;
|
|
import playground.Level6;
|
|
import playground.Level7;
|
|
|
|
public class MultiLevellGame extends GameLoop{
|
|
|
|
@Override
|
|
void defineLevels() {
|
|
this.resetLevels();
|
|
this.addLevel(new Level5());
|
|
this.addLevel(new Level6());
|
|
this.addLevel(new Level7());
|
|
}
|
|
|
|
|
|
public static void main(String[] args) throws IOException {
|
|
MultiLevellGame gl = new MultiLevellGame();
|
|
gl.runGame(args);
|
|
}
|
|
}
|