mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
24 lines
561 B
C++
24 lines
561 B
C++
#include "FortAthenaTabsScreenBase.h"
|
|
|
|
|
|
|
|
|
|
void UFortAthenaTabsScreenBase::HandleFeatureStateChanged(EFortUIFeature ChangedFeature, EFortUIFeatureState NewState, EFortUIFeatureStateReason Reason) {
|
|
}
|
|
|
|
void UFortAthenaTabsScreenBase::HandleFeatureNavigateRequest(EFortUIFeature Feature) {
|
|
}
|
|
|
|
bool UFortAthenaTabsScreenBase::CanShowSeasonShopTab() const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortAthenaTabsScreenBase::CanShowPrototypeTab(FName TabNameID) const {
|
|
return false;
|
|
}
|
|
|
|
UFortAthenaTabsScreenBase::UFortAthenaTabsScreenBase() {
|
|
this->TopTabList = NULL;
|
|
}
|
|
|