mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
12 lines
334 B
C++
12 lines
334 B
C++
#include "ProjectileHomingData.h"
|
|
|
|
FProjectileHomingData::FProjectileHomingData() {
|
|
this->HomingStyle = EFortHomingStyle::None;
|
|
this->MinTurnSpeed = 0.00f;
|
|
this->MaxTurnSpeed = 0.00f;
|
|
this->RampTimeFromMinToMaxTurnSpeed = 0.00f;
|
|
this->LockTargetDistanceThreshold = 0.00f;
|
|
this->ResetTurnSpeedTimer = false;
|
|
}
|
|
|