mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
12 lines
299 B
C++
12 lines
299 B
C++
#include "FortEventConditional.h"
|
|
|
|
FFortEventConditional::FFortEventConditional() {
|
|
ConditionalType = EFortEventConditionType::EFEC_StatCompare;
|
|
RelevantPeriod = EStatRecordingPeriod::Frame;
|
|
ComparisonType = EFortCompare::EFC_LessThan;
|
|
Value = 0;
|
|
Stat = NULL;
|
|
FPC = NULL;
|
|
}
|
|
|