mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-29 12:33:27 +00:00
12 lines
258 B
C++
12 lines
258 B
C++
#include "VehiclePawnState.h"
|
|
|
|
FVehiclePawnState::FVehiclePawnState() {
|
|
this->Vehicle = NULL;
|
|
this->VehicleApexZ = 0.00f;
|
|
this->SeatIndex = 0;
|
|
this->ExitSocketIndex = 0;
|
|
this->bOverrideVehicleExit = false;
|
|
this->EntryTime = 0.00f;
|
|
}
|
|
|