mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
396 B
C++
14 lines
396 B
C++
#include "FortEventConditional.h"
|
|
|
|
FFortEventConditional::FFortEventConditional() {
|
|
this->ConditionalType = EFortEventConditionType::EFEC_StatCompare;
|
|
this->RelevantPeriod = EStatRecordingPeriod::Minute;
|
|
this->ComparisonType = EFortCompare::EFC_LessThan;
|
|
this->Value = 0;
|
|
this->CraftingItem = NULL;
|
|
this->bCanCraft = false;
|
|
this->Stat = NULL;
|
|
this->FPC = NULL;
|
|
}
|
|
|