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.

21 lines
427 B

  1. package playground;
  2. /** This level adds two distracting objects to the canvas that cannot collide but bounce around all the time.
  3. */
  4. public class LevelMovingObjects extends SpaceInvadersLevel {
  5. // TODO your code here
  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. }