package playground; /** This level adds two distracting objects to the canvas that cannot collide but bounce around all the time. */ public class LevelMovingObjects extends SpaceInvadersLevel { // TODO your code here /** "Moving Objects Level!" is the message. * * @return String "Moving Objects Level!" */ @Override protected String getStartupMessage() { return "Moving Objects Level!"; } }