mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 12:03:27 +00:00
17 lines
452 B
C++
17 lines
452 B
C++
#include "FortCollectionBookData.h"
|
|
|
|
void UFortCollectionBookData::GetPageIdsFromCategoryId(FName CategoryId, TArray<FName>& PageIds) const {
|
|
}
|
|
|
|
UFortCollectionBookData::UFortCollectionBookData() {
|
|
this->PageCategoryData = NULL;
|
|
this->PageData = NULL;
|
|
this->SectionData = NULL;
|
|
this->SlotData = NULL;
|
|
this->SlotSourceData = NULL;
|
|
this->XPWeightData = NULL;
|
|
this->SlotRarityFactorData = NULL;
|
|
this->BookXPData = NULL;
|
|
}
|
|
|