* Sets up a PathfindingNode. * @param pos Position. */
| 27 | * @param pos Position. |
| 28 | */ |
| 29 | PathfindingNode::PathfindingNode(Position pos) : _pos(pos), _checked(0), _tuCost(0), _prevNode(0), _prevDir(0), _tuGuess(0), _openentry(0) |
| 30 | { |
| 31 | |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Deletes the PathfindingNode. |
nothing calls this directly
no outgoing calls
no test coverage detected