Path following

This commit is contained in:
2023-11-14 12:01:28 +01:00
parent ab817ee03d
commit 8825b9e01f
14 changed files with 213 additions and 102 deletions

View File

@@ -22,6 +22,7 @@ typedef struct PathfindingDesc {
TilePosition target;
BzTileMap *map;
PathNode *heap;
Path *outPath;
} PathfindingDesc;
bool findPath(const PathfindingDesc *desc);