Files
FNGameProj/Source/FortniteGame/Private/AthenaBatchedDamageGameplayCues_Shared.cpp
T
2024-03-03 23:44:39 +01:00

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;
}