changed stuff

This commit is contained in:
2024-08-01 21:55:56 +03:00
parent 74a5810cca
commit 96d62f8931
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;
};