mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
408 B
C++
16 lines
408 B
C++
#include "FortQuestPoolTableRow.h"
|
|
|
|
FFortQuestPoolTableRow::FFortQuestPoolTableRow() {
|
|
this->RefreshIntervalHours = 0;
|
|
this->LootTier = 0;
|
|
this->RerollLimit = 0;
|
|
this->bGlobalPull = false;
|
|
this->bRollOnActivation = false;
|
|
this->bDeleteActiveOnRefresh = false;
|
|
this->MaxActive = 0;
|
|
this->DaysToKeepClaimed = 0;
|
|
this->DaysToKeepCompleted = 0;
|
|
this->MaxUnclaimed = 0;
|
|
}
|
|
|