HPASharp.Search.AStarNode.AStarNode C# (CSharp) Method

AStarNode() public method

public AStarNode ( int parent, int g, int h, CellStatus status ) : System
parent int
g int
h int
status CellStatus
return System
        public AStarNode(int parent, int g, int h, CellStatus status)
        {
            Parent = parent;
            G = g;
            H = h;
            Status = status;
        }
AStarNode