mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
12 lines
294 B
C++
12 lines
294 B
C++
#include "HeistExitCraftData.h"
|
|
|
|
FHeistExitCraftData::FHeistExitCraftData() {
|
|
this->ExitCraftSpawner = NULL;
|
|
this->SpawnedExitCraft = NULL;
|
|
this->ExitCraftState = EHeistExitCraftState::None;
|
|
this->SpawnTime = 0.00f;
|
|
this->bIsUsed = false;
|
|
this->bHasDeparted = false;
|
|
}
|
|
|