mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
54 lines
1.1 KiB
C++
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() {
|
|
}
|
|
|