Universe.BotManager.AStar.AStarNode.IsSameState C# (CSharp) Method

IsSameState() public method

Determines whether the current node is the same state as the on passed.
public IsSameState ( AStarNode aNode ) : bool
aNode AStarNode AStarNode to compare the current node to
return bool
        public virtual bool IsSameState(AStarNode aNode)
        {
            return false;
        }