mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
14 lines
407 B
C++
14 lines
407 B
C++
#include "FortAthenaVehicleInputStateReliable.h"
|
|
|
|
FFortAthenaVehicleInputStateReliable::FFortAthenaVehicleInputStateReliable() {
|
|
this->bIsSprinting = false;
|
|
this->bIsJumping = false;
|
|
this->bIsBraking = false;
|
|
this->bIsHonking = false;
|
|
this->bIgnoreForwardInAir = false;
|
|
this->bMovementModifier0 = false;
|
|
this->bMovementModifier1 = false;
|
|
this->bMovementModifier2 = false;
|
|
}
|
|
|