I have a two player game, and I am trying to make it end when not one, but both are eaten, in whatever order it happens.
I put in the basic:
public void lookForPlayers()
{
if
{
Greenfoot.stop();
}
}
But am unsure on how to make it return when both are gone. (This script is in the class which actually eats the players).

