mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
354 B
C++
15 lines
354 B
C++
#include "FortSpokenLine.h"
|
|
|
|
FFortSpokenLine::FFortSpokenLine() {
|
|
this->Audio = NULL;
|
|
this->AnimMontage = NULL;
|
|
this->AnimSequence = NULL;
|
|
this->Addressee = NULL;
|
|
this->BroadcastFilter = FFBF_Speaker;
|
|
this->Delay = 0.00f;
|
|
this->bInterruptCurrentLine = false;
|
|
this->bCanBeInterrupted = false;
|
|
this->bCanQue = false;
|
|
}
|
|
|