mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|