mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
16 lines
348 B
C++
16 lines
348 B
C++
#include "FortQuestPoolTableRow.h"
|
|
|
|
FFortQuestPoolTableRow::FFortQuestPoolTableRow() {
|
|
RefreshIntervalHours = 0;
|
|
LootTier = 0;
|
|
RerollLimit = 0;
|
|
bGlobalPull = false;
|
|
bRollOnActivation = false;
|
|
bDeleteActiveOnRefresh = false;
|
|
MaxActive = 0;
|
|
DaysToKeepClaimed = 0;
|
|
DaysToKeepCompleted = 0;
|
|
MaxUnclaimed = 0;
|
|
}
|
|
|