How do I use if(Greenfoot.mouseClicked(para)) to have the user start the game when they click anywhere on the screen? This is for an assignment, and the user is prompted to start the game. I've set the Background to an image, and put (this) into the parameters, and then called a method that I already wrote out.
super(1271, 712, 1); setBackground("start.jpg"); if (Greenfoot.mouseClicked(this)) { started(); }