void ATankAiController::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
if (GetPlayerTank())
{
FVector HitLocation = GetWorld()->GetFirstPlayerController()->GetPawn()->GetActorLocation();
GetControlledTank()->AimAt(HitLocation);
//GetControlledTank()->AimAt(HitLocation);
}
}