did someone know the code on how to display another world? like before the game starts... it displays a startworld and also have a code in it that when clicked.. it will proceed to the actual game?
public void act()
{
if (Greenfoot.mousePressed(null))
{
Greenfoot.setWorld(new PlayWorld());
}
}