11 lines
268 B
C++
Executable file
11 lines
268 B
C++
Executable file
#include "EnemyDetonationSetting.h"
|
|
|
|
UEnemyDetonationSetting::UEnemyDetonationSetting() {
|
|
this->FireDamage = NULL;
|
|
this->FireParticles = NULL;
|
|
this->FireSound = NULL;
|
|
this->IceDamage = NULL;
|
|
this->IceParticles = NULL;
|
|
this->IceSound = NULL;
|
|
}
|
|
|