AStarXNA.GridCell.Reset C# (CSharp) 메소드

Reset() 공개 메소드

public Reset ( ) : void
리턴 void
        public void Reset ()
        {
            if (Type == GridCellType.Path)
            {
                type = GridCellType.Walkable;
            }
            State = GridCellState.NotVisited;
            Parent = null;
            H = G = 0;
        }