package base; import java.io.IOException; import playground.Level5; import playground.Level6; import playground.Level7; public class MultiLevelGame 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 { MultiLevelGame mlg = new MultiLevelGame(); mlg.runGame(args); } }