mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
571 B
C++
25 lines
571 B
C++
#include "TwoTeamScoreWidgetBase.h"
|
|
|
|
void UTwoTeamScoreWidgetBase::UpdateAllUI() {
|
|
}
|
|
|
|
|
|
|
|
|
|
void UTwoTeamScoreWidgetBase::OnHandleSpectatingChanged(AFortPlayerStateZone* SpectatingTarget) {
|
|
}
|
|
|
|
void UTwoTeamScoreWidgetBase::OnGamePhaseChanged(EAthenaGamePhase GamePhase) {
|
|
}
|
|
|
|
void UTwoTeamScoreWidgetBase::OnCountdownTimerUpdate() {
|
|
}
|
|
|
|
UTwoTeamScoreWidgetBase::UTwoTeamScoreWidgetBase() {
|
|
this->PercentageScoreToPlayCountdown = 0.00f;
|
|
this->PercentageScoreToPlayFinalCountdown = 0.00f;
|
|
this->ScoreCountdownSoundFrequency = 0.00f;
|
|
this->LastViewedTeam = 0;
|
|
}
|
|
|