Files
FNGameProj/Source/FortniteGame/Private/FortMinigameProgressComponent.cpp
T
2024-06-07 01:17:09 +02:00

30 lines
838 B
C++

#include "FortMinigameProgressComponent.h"
#include "Net/UnrealNetwork.h"
void UFortMinigameProgressComponent::StartProgress(APlayerState* PlayerState) {
}
void UFortMinigameProgressComponent::RevertProgress(APlayerState* PlayerState) {
}
bool UFortMinigameProgressComponent::HasActivationTime() const {
return false;
}
void UFortMinigameProgressComponent::FinishProgress(APlayerState* PlayerState) {
}
void UFortMinigameProgressComponent::AbortProgress(APlayerState* PlayerState) {
}
void UFortMinigameProgressComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UFortMinigameProgressComponent, ActivationTime);
}
UFortMinigameProgressComponent::UFortMinigameProgressComponent() {
ActivationTime = 1;
}