Files
FNGameProj/Source/FortniteGame/Private/FortTieredCollectionLayout.cpp
T
2024-06-07 01:17:09 +02:00

22 lines
521 B
C++

#include "FortTieredCollectionLayout.h"
bool UFortTieredCollectionLayout::ShouldUseTierAsRandomSeed() const {
return false;
}
int32 UFortTieredCollectionLayout::GetMissionPointsForTier(int32 Tier) const {
return 0;
}
FText UFortTieredCollectionLayout::GetCollectionLayoutDisplayName() const {
return FText::GetEmpty();
}
UFortTieredCollectionLayout::UFortTieredCollectionLayout() {
bUseTierAsRandomSeed = true;
bFiniteTiers = true;
MaxNumberOfTiersAllowed = 0;
InitialTierUnlocked = 0;
}