Hi, I'm new to Greenfoot. I am trying to set my code up so that when all _Goldballs are gone that It sends the user to Level02.
I have tried to do this with my counter.
I am writing this code in Level01 subclass, so that I can change the amount every level. Also I don't know what the variable (Counter) would be.
Thanks
public void act()
{
if (Counter== 9)
Greenfoot.setWorld(new Level02());
}
