Programmierung 2 - Praktikum
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.

23 lines
408 B

package base;
import java.io.IOException;
import playground.Level5;
import playground.LevelMovingObjects;
import playground.LevelWithBox;
public class MultiLevelGame extends GameLoop {
void defineLevels() {
this.addLevel(new LevelMovingObjects());
}
public static void main(String[] args) throws IOException {
GameLoop gl = new GameLoop();
gl.runGame(args);
}
}