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

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. package playground;
  2. public class Level7 extends Level5to7{
  3. protected static final double ENEMYSPEEDX = 800;
  4. protected static final double ENEMYSPEEDY = 140;
  5. protected static final int NR_ENEMIES =21;
  6. protected int calcNrEnemies() {
  7. return NR_ENEMIES;
  8. }
  9. @Override
  10. protected double calcEnemySpeedX() {
  11. return ENEMYSPEEDX;
  12. }
  13. @Override
  14. protected double calcEnemySpeedY() {
  15. return ENEMYSPEEDY;
  16. }
  17. @Override
  18. protected String getStartupMessage() {
  19. return "Level7, get ready";
  20. }
  21. }