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

31 lines
794 B
C++
Executable file

#include "HackingUsableComponent.h"
#include "Net/UnrealNetwork.h"
void UHackingUsableComponent::OnRep_HackingState(const FHackingUsableState& oldState) {
}
bool UHackingUsableComponent::GetIsHacked() const {
return false;
}
bool UHackingUsableComponent::GetIsBeingHacked() const {
return false;
}
TSoftClassPtr<UHackingToolWidget> UHackingUsableComponent::GetHackingWidgetType() const {
return NULL;
}
APlayerCharacter* UHackingUsableComponent::GetHackedBy() const {
return NULL;
}
void UHackingUsableComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UHackingUsableComponent, HackingState);
}
UHackingUsableComponent::UHackingUsableComponent() {
}