mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
18 lines
534 B
C++
18 lines
534 B
C++
#include "AthenaBatchedDamageGameplayCues_Shared.h"
|
|
|
|
FAthenaBatchedDamageGameplayCues_Shared::FAthenaBatchedDamageGameplayCues_Shared() {
|
|
this->Magnitude = 1;
|
|
this->bWeaponActivate = false;
|
|
this->bIsFatal = false;
|
|
this->bIsCritical = false;
|
|
this->bIsShield = false;
|
|
this->bIsShieldDestroyed = false;
|
|
this->bIsShieldApplied = false;
|
|
this->bIsBallistic = false;
|
|
this->NonPlayerMagnitude = 1;
|
|
this->NonPlayerbIsFatal = false;
|
|
this->NonPlayerbIsCritical = false;
|
|
this->bIsValid = false;
|
|
}
|
|
|