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

22 lines
467 B
C++
Executable file

#include "ActorTrackingComponent.h"
void UActorTrackingComponent::ToggleIcon(bool Visible) {
}
void UActorTrackingComponent::ShowAlwaysOn() {
}
void UActorTrackingComponent::OnHoldTAB(bool IsDown) {
}
bool UActorTrackingComponent::IsIconVisible() const {
return false;
}
UActorTrackingComponent::UActorTrackingComponent() {
this->WidgetType = NULL;
this->VisibleOnHoldTAB = true;
this->VisibleFromStart = false;
this->bIconHidden = false;
}