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.

20 lines
349 B

  1. package playground;
  2. // FIXME JavaDoc
  3. public class LevelMovingObjects extends SpaceInvadersLevel {
  4. // FIXME implement prepareLevel() method
  5. /**
  6. * "Moving Objects Level!" is the message.
  7. *
  8. * @return String "Moving Objects Level!"
  9. */
  10. @Override
  11. protected String getStartupMessage() {
  12. return "Moving Objects Level!";
  13. }
  14. }