mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
350 B
C++
14 lines
350 B
C++
#include "FortWindImpulseRadius.h"
|
|
|
|
FFortWindImpulseRadius::FFortWindImpulseRadius() {
|
|
this->Radius = 0.00f;
|
|
this->CurrentRadius = 0.00f;
|
|
this->PreviousRadius = 0.00f;
|
|
this->Magnitude = 0.00f;
|
|
this->CurrentMagnitude = 0.00f;
|
|
this->PreviousMagnitude = 0.00f;
|
|
this->BlendTime = 0.00f;
|
|
this->CurrentBlendTime = 0.00f;
|
|
}
|
|
|