8 lines
205 B
C++
Executable file
8 lines
205 B
C++
Executable file
#include "ProjectileSwitch.h"
|
|
|
|
FProjectileSwitch::FProjectileSwitch() {
|
|
this->ProjectileClass = NULL;
|
|
this->CriteriaType = EProjectileSwitchCriteria::None;
|
|
this->CriteriaThreshhold = 0.00f;
|
|
}
|
|
|