mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
24 lines
555 B
C++
24 lines
555 B
C++
#include "TryHardCountdownWidget.h"
|
|
|
|
|
|
void UTryHardCountdownWidget::ShowWidget_Implementation(int32 NumRemaining) {
|
|
}
|
|
|
|
void UTryHardCountdownWidget::OnHandleSpectatingChanged(AFortPlayerStateZone* SpectatingTarget) {
|
|
}
|
|
|
|
void UTryHardCountdownWidget::OnGamePhaseStepChanged(EAthenaGamePhaseStep GamePhaseStep) {
|
|
}
|
|
|
|
bool UTryHardCountdownWidget::IsShowing_Implementation() const {
|
|
return false;
|
|
}
|
|
|
|
void UTryHardCountdownWidget::HideWidget_Implementation() {
|
|
}
|
|
|
|
UTryHardCountdownWidget::UTryHardCountdownWidget() {
|
|
this->NumToStartShowingAt = 10;
|
|
}
|
|
|