DRG-Femboy-Voice/Source/FSD/Private/LookingAtContentWidget.cpp
2025-04-15 12:39:31 -07:00

26 lines
644 B
C++
Executable file

#include "LookingAtContentWidget.h"
void ULookingAtContentWidget::UpdateCurrentTarget(float DeltaSeconds, AActor* InTargetActor, const TScriptInterface<IHealth>& InTargetHealthComponent) {
}
void ULookingAtContentWidget::RegisterWeakPointHit() {
}
FText ULookingAtContentWidget::GetTargetOwnerName() const {
return FText::GetEmpty();
}
FText ULookingAtContentWidget::GetTargetName() const {
return FText::GetEmpty();
}
float ULookingAtContentWidget::GetTargetHealthPct() const {
return 0.0f;
}
ULookingAtContentWidget::ULookingAtContentWidget() : UUserWidget(FObjectInitializer::Get()) {
this->bWeakPointHit = false;
}