mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +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;
|
|
}
|
|
|