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

27 lines
813 B
C++

#include "AthenaEventMatchScoreboardScreenBase.h"
void UAthenaEventMatchScoreboardScreenBase::SetSquadIdsVisible(bool bSquadIdsVisible) {
}
void UAthenaEventMatchScoreboardScreenBase::OnToggleStormcapDamageActionExecuted(bool& bPassThrough) {
}
void UAthenaEventMatchScoreboardScreenBase::OnSquadKillscoreChanged(UAthenaRemoteSquadViewData* InSquadData, int32 InKillScore) {
}
void UAthenaEventMatchScoreboardScreenBase::OnSquadEliminated(UAthenaRemoteSquadViewData* InSquadData) {
}
void UAthenaEventMatchScoreboardScreenBase::OnSortByPlaceActionExecuted(bool& bPassThrough) {
}
void UAthenaEventMatchScoreboardScreenBase::OnSortByEliminationsActionExecuted(bool& bPassThrough) {
}
UAthenaEventMatchScoreboardScreenBase::UAthenaEventMatchScoreboardScreenBase() {
this->ScoreboardListView = NULL;
}