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