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