public boolean isWon(){
    return this.findFoods().size() == 0 && !overlapWithGhost();
}

public boolean isLost(){
    return overlapWithGhost();
}