CanJoinFlightPattern()

Found in:

public bool CanJoinFlightPattern(Crow otherBirb)
    {
        if (otherBirb != this & otherBirb.ReturnState() == EnemyState.Neutral)
        {
            return true;
        }

        return false;
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *