7 lines
178 B
C++
Executable file
7 lines
178 B
C++
Executable file
#include "EnemyAttackDescription.h"
|
|
|
|
FEnemyAttackDescription::FEnemyAttackDescription() {
|
|
this->range = EEnemyAttackType::Melee;
|
|
this->DamageType = EDamageType::Fire;
|
|
}
|
|
|