mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
521 B
C++
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;
|
|
}
|
|
|