10 lines
233 B
C++
Executable file
10 lines
233 B
C++
Executable file
#include "ProjectileState.h"
|
|
|
|
FProjectileState::FProjectileState() {
|
|
this->HomingTargetComponent = NULL;
|
|
this->IsSimulating = false;
|
|
this->IsBouncy = false;
|
|
this->IsHoming = false;
|
|
this->IsPenetrating = false;
|
|
}
|
|
|