Universe.BotManager.AStar.AStarNode.IsSameState C# (CSharp) Метод

IsSameState() публичный Метод

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
Результат bool
        public virtual bool IsSameState(AStarNode aNode)
        {
            return false;
        }