Neighbors function draft; refactoring

This commit is contained in:
2022-01-13 16:34:06 +01:00
parent b5c9c661fe
commit 219b99c8d7
6 changed files with 34 additions and 14 deletions
+1 -2
View File
@@ -34,10 +34,9 @@ void AAdventureCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInput
}
void AAdventureCharacter::AStarFindPath(AHexTile*)
void AAdventureCharacter::AStarFindPath(AHexTile* Goal)
{
std::priority_queue<int32> Frontier;
TMap<AHexTile*, AHexTile*> CameFrom;
TMap<AHexTile*, int32> CostSoFar;
}