mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
422 B
C++
15 lines
422 B
C++
#include "FortAthenaExitCraftSpawner.h"
|
|
#include "Components/CapsuleComponent.h"
|
|
|
|
void AFortAthenaExitCraftSpawner::StartExitCraftSpawnTimer() {
|
|
}
|
|
|
|
void AFortAthenaExitCraftSpawner::DestroyBlockingActors() {
|
|
}
|
|
|
|
AFortAthenaExitCraftSpawner::AFortAthenaExitCraftSpawner() {
|
|
this->DestructionOverlapCapsule = CreateDefaultSubobject<UCapsuleComponent>(TEXT("DestructionOverlapMesh_0"));
|
|
this->ExitCraftInfo = NULL;
|
|
}
|
|
|