File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ All this settings could be adjusted in the __#define__ statements at the beginni
172172
173173This is because ** AStar()** needs this 2-dimensional vector <br >
174174to figure out wheather its a walkable or not walkable terrain. <br ><br >
175- ** prepare_maze()** can handle a vector\< string> or vector\< vector\< char>> <br >
175+ ** prepare_maze()** can handle a * vector\< string>* or * vector\< vector\< char>>* <br >
176176
177177https://github.com/LukeProducts/AStar-Pathfinding-Cpp/blob/14c2a2b6773bd87094b09eae8189e36539831fc7/examples/prepare_maze.cpp#L7-L32
178178
@@ -197,7 +197,7 @@ what happens:
197197
198198
199199 ** find_obj** finds an character out of a maze in ascii format, <br >
200- such as vector\< string> or vector\< vector\< char>> <br >
200+ such as * vector\< string>* or * vector\< vector\< char>>* <br >
201201 and returns a vector\< int> with the (x, y) position of the character into the maze. <br ><br >
202202 This is usefull to figure out the start and ends position in your maze, <br >
203203 so that you can pass this info into Astar(), which needs the position <br >
You can’t perform that action at this time.
0 commit comments