mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|