mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-28 12:13:26 +00:00
14 lines
342 B
C++
14 lines
342 B
C++
#include "FortAIBatchedDamageCues.h"
|
|
|
|
FFortAIBatchedDamageCues::FFortAIBatchedDamageCues() {
|
|
this->bImpact = false;
|
|
this->bImpactWeapon = false;
|
|
this->bDamage = false;
|
|
this->bDamageShields = false;
|
|
this->bDamageWeapon = false;
|
|
this->bFatal = false;
|
|
this->bWeaponActivated = false;
|
|
this->TargetActor = NULL;
|
|
}
|
|
|