Files
FNGameProj/Source/FortniteUI/Private/MashPhaseWidget.cpp
2024-01-21 00:41:14 +01:00

25 lines
450 B
C++

#include "MashPhaseWidget.h"
void UMashPhaseWidget::HandleMashPhaseChanged(int32 NewPhase) {
}
void UMashPhaseWidget::HandleCountdownUpdate() {
}
void UMashPhaseWidget::HandleCountdownStarted(const int32 TimeRemaining) {
}
void UMashPhaseWidget::HandleCountdownFinished() {
}
UMashPhaseWidget::UMashPhaseWidget() {
this->CurrentPhase = EMashPhase::NotStarted;
this->CurrentObjectiveAreaIndex = 0;
this->MashMutatorRef = NULL;
}