Neighbors function draft; refactoring
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user