I need to know if one TYPE of Actor exists in the world.
If it does, the game should continue, if not it should
start the next level.
if (!getObjects(MyActorType.class).isEmpty())
{
// Continue
}
else
{
// Next level
}if (getObjects(MyActorType.class).isEmpty()) Greenfoot.setWorld(new Level2());