I want you to have to click the run botton but nothing actually starts until you click an object on the screen. I have the part to make the game start down: (I think :p )
public void CheckStart()
{
if(Greenfoot.mousePressed(this)) {
Greenfoot.start();
}
}
But how can I stall the game until this happens?