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

22 lines
613 B
C++

#include "FortAccountWidgetBase.h"
void UFortAccountWidgetBase::HandleCurrentlyViewedAccountInfoChanged(FFortPublicAccountInfo NewInfo) {
}
FAthenaSeasonBannerLevel UFortAccountWidgetBase::GetSeasonBannerInfo(int32 Level) const {
return FAthenaSeasonBannerLevel{};
}
bool UFortAccountWidgetBase::GetNextSeasonReward(FFortItemQuantityPair& Reward, int32& RewardLevel) const {
return false;
}
bool UFortAccountWidgetBase::GetNextSeasonChaseReward(FFortItemQuantityPair& Reward, int32& RewardLevel, int32 StartingLevel) const {
return false;
}
UFortAccountWidgetBase::UFortAccountWidgetBase() {
}