mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
10 lines
215 B
C++
10 lines
215 B
C++
#include "FlightControlSurfaces.h"
|
|
|
|
FFlightControlSurfaces::FFlightControlSurfaces() {
|
|
this->RudderAngle = 0.00f;
|
|
this->AileronAngle = 0.00f;
|
|
this->ElevatorAngle = 0.00f;
|
|
this->FlapAngle = 0.00f;
|
|
}
|
|
|