10 lines
255 B
C++
Executable file
10 lines
255 B
C++
Executable file
#include "FakeMoverPropulsion.h"
|
|
|
|
FFakeMoverPropulsion::FFakeMoverPropulsion() {
|
|
this->Speed = 0.00f;
|
|
this->AirAcceleration = 0.00f;
|
|
this->AirDeceleration = 0.00f;
|
|
this->GroundAcceleration = 0.00f;
|
|
this->GroundDeceleration = 0.00f;
|
|
}
|
|
|