mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
12 lines
344 B
C++
12 lines
344 B
C++
#include "VehicleTrickSequenceBasics.h"
|
|
|
|
FVehicleTrickSequenceBasics::FVehicleTrickSequenceBasics() {
|
|
this->TrickStartTime = 0.00f;
|
|
this->TrickStartDistance = 0.00f;
|
|
this->TrickStartHeight = 0.00f;
|
|
this->TrickPointsPerAirSecond = 0.00f;
|
|
this->TrickPointsPerAirDistance = 0.00f;
|
|
this->TrickPointsPerAirHeight = 0.00f;
|
|
}
|
|
|