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

17 lines
488 B
C++
Executable file

#include "ContinuousUsableComponent.h"
#include "Net/UnrealNetwork.h"
void UContinuousUsableComponent::SetCanUse(bool CanUse) {
}
void UContinuousUsableComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UContinuousUsableComponent, Usable);
}
UContinuousUsableComponent::UContinuousUsableComponent() {
this->TimeBetweenTicks = 1.00f;
this->Usable = true;
}