mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
22 lines
613 B
C++
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() {
|
|
}
|
|
|