Files
2026-04-22 15:51:07 +02:00

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;
}