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

19 lines
577 B
C++

#include "AthenaSpectatorBuildCountBase.h"
void UAthenaSpectatorBuildCountBase::UpdateBuildCount() {
}
void UAthenaSpectatorBuildCountBase::OnWorldItemListChanged(const TArray<UFortWorldItem*>& ItemsAdded, const TArray<UFortWorldItem*>& ItemsRemoved) {
}
void UAthenaSpectatorBuildCountBase::OnFollowedPlayerChanged(AFortPlayerControllerSpectating* SpectatingPC, AFortPlayerState* NewFollowedPlayer) {
}
UAthenaSpectatorBuildCountBase::UAthenaSpectatorBuildCountBase() {
this->BuildingClass = NULL;
this->BuildCountType = ESpectatorBuildCountType::BuildCount;
}