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;
        }