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

37 lines
797 B
C++
Executable file

#include "CaretakerActionComponent.h"
#include "Net/UnrealNetwork.h"
void UCaretakerActionComponent::UseAction() {
}
void UCaretakerActionComponent::TriggerAction() {
}
void UCaretakerActionComponent::StopUsing() {
}
void UCaretakerActionComponent::OnRep_IsUsing() {
}
ACaretaker* UCaretakerActionComponent::GetCaretaker() const {
return NULL;
}
bool UCaretakerActionComponent::CanUse_Implementation() const {
return false;
}
void UCaretakerActionComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UCaretakerActionComponent, IsUsing);
}
UCaretakerActionComponent::UCaretakerActionComponent() {
this->StartTickOnUse = false;
this->IsUsing = false;
}