Files
FNGameProj/Source/FortniteGame/Private/FortExperimentContext.cpp
T
2024-03-03 23:44:39 +01:00

54 lines
1.1 KiB
C++

#include "FortExperimentContext.h"
bool UFortExperimentContext::ShouldUseSmallCatabaLayout() const {
return false;
}
bool UFortExperimentContext::ShouldUseCatabaScreenInGame() const {
return false;
}
bool UFortExperimentContext::ShouldUseCatabaScreen() const {
return false;
}
bool UFortExperimentContext::ShouldUseCatabaCarouselInGame() const {
return false;
}
bool UFortExperimentContext::ShouldUseCatabaCarousel() const {
return false;
}
bool UFortExperimentContext::ShouldShowReloadVBucksIntro() const {
return false;
}
bool UFortExperimentContext::ShouldShowOldMOTDNews() const {
return false;
}
bool UFortExperimentContext::ShouldShowNewVBuckColorsJuly2019() const {
return false;
}
bool UFortExperimentContext::ShouldShowNewVBuckCoinAssetsJuly2019() const {
return false;
}
bool UFortExperimentContext::ShouldShowInGameStoreToast() const {
return false;
}
bool UFortExperimentContext::ShouldShowDynamicReloadVBucks() const {
return false;
}
bool UFortExperimentContext::ShouldProposeRequiredVBucksSKUs() const {
return false;
}
UFortExperimentContext::UFortExperimentContext() {
}