mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|