pathfinding with bfs

This commit is contained in:
2026-07-04 18:01:22 -07:00
parent 6697ba70bf
commit ca2ea3397d
5 changed files with 154 additions and 17 deletions
+4
View File
@@ -13,3 +13,7 @@ INVALID_ENTITY :: Entity(0)
MOVE_SPEED :: 4.0
MAX_PATH :: 512
NEIGHBOR_OFFSET :: [4]Tile_Coord{{0, -1}, {0, 1}, {1, 0}, {-1, 0}}