Files
2026-04-22 15:51:07 +02:00

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;
}