mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
25 lines
573 B
C++
25 lines
573 B
C++
#include "AthenaTeamScoreWidgetBase.h"
|
|
|
|
|
|
|
|
|
|
void UAthenaTeamScoreWidgetBase::HandleUpdate() {
|
|
}
|
|
|
|
void UAthenaTeamScoreWidgetBase::HandleSpectatingChanged(AFortPlayerStateZone* SpectatingTarget) {
|
|
}
|
|
|
|
void UAthenaTeamScoreWidgetBase::HandleScoreChanged(int32 Score) {
|
|
}
|
|
|
|
UAthenaTeamScoreWidgetBase::UAthenaTeamScoreWidgetBase() {
|
|
this->CurrPlayerState = NULL;
|
|
this->GoalScore = 0;
|
|
this->PreviousScore = -1;
|
|
this->PreviousScorePlacement = -1;
|
|
this->PreviousDeltaScore = 99999999;
|
|
this->bPreviousIsWinner = false;
|
|
this->bPreviousHasScore = false;
|
|
}
|
|
|