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.

31 lines
397 B

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