mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
798 B
C++
27 lines
798 B
C++
#include "FortChallengeBundleItem.h"
|
|
|
|
void UFortChallengeBundleItem::GetQuests(UFortQuestManager* QuestManager, TArray<UFortQuestItem*>& OwnedQuests, TArray<UFortQuestItemDefinition*>& UnownedQuests, bool bGetAllQuestsInChain) const {
|
|
}
|
|
|
|
float UFortChallengeBundleItem::GetPercentageComplete() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
UFortChallengeBundleItemDefinition* UFortChallengeBundleItem::GetChallengeDefinitionBP() const {
|
|
return NULL;
|
|
}
|
|
|
|
void UFortChallengeBundleItem::GetAchievedCount(int32& OutTotalAchievedCount, int32& OutTotalRequiredCount) const {
|
|
}
|
|
|
|
bool UFortChallengeBundleItem::CanLevelUpBundle() const {
|
|
return false;
|
|
}
|
|
|
|
UFortChallengeBundleItem::UFortChallengeBundleItem() {
|
|
num_quests_completed = 0;
|
|
num_progress_quests_completed = 0;
|
|
max_allowed_bundle_level = 0;
|
|
}
|
|
|