changed stuff

This commit is contained in:
2024-08-01 21:55:56 +03:00
parent cd08f8c742
commit f4c988247c
2 changed files with 18 additions and 6 deletions

View File

@@ -15,7 +15,7 @@ namespace omath::pathfinding
struct NavigationVertex
{
Vector3 origin;
std::vector<Vector3*> connections;
std::vector<NavigationVertex*> connections;
};