mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
12 lines
358 B
C++
12 lines
358 B
C++
#include "FortGameplayCueAttachInfo.h"
|
|
|
|
FFortGameplayCueAttachInfo::FFortGameplayCueAttachInfo() {
|
|
this->AttachType = EFortGameplayCueAttachType::AttachToTarget;
|
|
this->bAttachToWeapon = false;
|
|
this->bAttachToHitResult = false;
|
|
this->bUseUnsmoothedNetworkPosition = false;
|
|
this->bIgnoreScale = false;
|
|
this->bIgnoreRotation = false;
|
|
}
|
|
|