Space von Team 22 (Nico B. Benjamin F. Lea A.)
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.

29 lines
529 B

package playground;
public class Level7 extends Level5to7{
protected static final double ENEMYSPEEDX = 800;
protected static final double ENEMYSPEEDY = 140;
protected static final int NR_ENEMIES =21;
protected int calcNrEnemies() {
return NR_ENEMIES;
}
@Override
protected double calcEnemySpeedX() {
return ENEMYSPEEDX;
}
@Override
protected double calcEnemySpeedY() {
return ENEMYSPEEDY;
}
@Override
protected String getStartupMessage() {
return "Level7, get ready";
}
}