mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
17 lines
330 B
C++
17 lines
330 B
C++
#include "FortSkyTube.h"
|
|
#include "Components/SplineComponent.h"
|
|
|
|
|
|
bool AFortSkyTube::IsSkyTubeEnabled() const {
|
|
return false;
|
|
}
|
|
|
|
void AFortSkyTube::DeferredEnableOverlaps() {
|
|
}
|
|
|
|
AFortSkyTube::AFortSkyTube() {
|
|
this->Spline = CreateDefaultSubobject<USplineComponent>(TEXT("SplineComponent"));
|
|
this->bEnabled = true;
|
|
}
|
|
|