mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
414 B
C++
15 lines
414 B
C++
#include "FortGameplayCueNotify_Simple.h"
|
|
|
|
|
|
UFortGameplayCueNotify_Simple::UFortGameplayCueNotify_Simple() {
|
|
this->StartSound = NULL;
|
|
this->StartParticleSystem = NULL;
|
|
this->bStayAttached = false;
|
|
this->bUseHitResult = false;
|
|
this->bUseWeapon = false;
|
|
this->bIgnoreRotation = false;
|
|
this->bUseUnsmoothedNetworkPosition = false;
|
|
this->PoolingMethod = EPSCPoolMethod::AutoRelease;
|
|
}
|
|
|