Anne2403 wrote...
uhmm @danpost sorry If I am always asking for help..
I already change the previous code..
I made a world class called 'Winner' and this is my code for it...
import greenfoot.*;
public class Winner extends World
public Winner()
{
super(990,790,1)
}
public void act()
{
if(getObjects(Enemies.class).isEmpty())
{
Greenfoot.setWorld(new Winner());
}


