mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
423 B
C++
17 lines
423 B
C++
#include "FortFeedbackEventData.h"
|
|
|
|
FFortFeedbackEventData::FFortFeedbackEventData() {
|
|
ChanceToPlay = 1;
|
|
MinReplayTime = 1;
|
|
MinReplayTimeForSpeaker = 1;
|
|
MaxWitnessDistance = 1;
|
|
bInterruptCurrentLine = false;
|
|
bCanBeInterrupted = false;
|
|
bCanQue = false;
|
|
MultiplayerBroadcastFilter = FFBF_Speaker;
|
|
ContextSelectionMethod = FFSM_Instigator;
|
|
FeedbackDelay = 1;
|
|
TimeLastPlayed = 1;
|
|
}
|
|
|