mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
456 B
C++
22 lines
456 B
C++
#include "FortCardPackItem.h"
|
|
|
|
bool UFortCardPackItem::IsChoicePack() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortCardPackItem::GetChoices(TArray<UFortAccountItemDefinition*>& Choices) const {
|
|
}
|
|
|
|
void UFortCardPackItem::GetChoiceItems(TArray<UFortItem*>& ChoiceAttributes) const {
|
|
}
|
|
|
|
bool UFortCardPackItem::CanStoreOpen() const {
|
|
return false;
|
|
}
|
|
|
|
UFortCardPackItem::UFortCardPackItem() {
|
|
is_loot_tier_overridden = false;
|
|
override_loot_tier = 0;
|
|
}
|
|
|