mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
11 lines
253 B
C++
11 lines
253 B
C++
#include "LockOnInfo.h"
|
|
|
|
FLockOnInfo::FLockOnInfo() {
|
|
this->State = ELockOnState::NoTarget;
|
|
this->TargetAcquisitionTime = 0.00f;
|
|
this->TargetLockOnTime = 0.00f;
|
|
this->TargetOutOfSightTime = 0.00f;
|
|
this->CooldownStartTime = 0.00f;
|
|
}
|
|
|