mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
13 lines
286 B
C++
13 lines
286 B
C++
#include "SMVehicleGear.h"
|
|
|
|
FSMVehicleGear::FSMVehicleGear() {
|
|
this->TopSpeed = 0.00f;
|
|
this->MinSpeed = 0.00f;
|
|
this->PushForce = 0.00f;
|
|
this->RampTime = 0.00f;
|
|
this->SteeringAngleMultiplier = 0.00f;
|
|
this->bAutoBrake = false;
|
|
this->bIgnoreGravity = false;
|
|
}
|
|
|