mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
434 B
C++
14 lines
434 B
C++
#include "FortDamageNumberInfo.h"
|
|
|
|
FFortDamageNumberInfo::FFortDamageNumberInfo() {
|
|
this->bIsCriticalDamage = false;
|
|
this->Damage = 0;
|
|
this->DamageNumberType = EFortDamageNumberType::None;
|
|
this->VisualDamageScale = 0.00f;
|
|
this->ElementalDamageType = EFortElementalDamageType::None;
|
|
this->ScoreType = EStatCategory::Combat;
|
|
this->bAttachScoreNumberToPlayer = false;
|
|
this->StaticMeshComponent = NULL;
|
|
}
|
|
|