mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
13 lines
391 B
C++
13 lines
391 B
C++
#include "FortDynamicBuildingDeconstructor.h"
|
|
|
|
AFortDynamicBuildingDeconstructor::AFortDynamicBuildingDeconstructor() {
|
|
this->bDebugDrawBounds = false;
|
|
this->bSelectiveDestruction = false;
|
|
this->bIgnoreMissionActors = false;
|
|
this->bShrinkAndDestroyEffect = false;
|
|
this->NumOfPiecesToDestroyAtOnce = 10;
|
|
this->TimeBetweenChunks = 0.20f;
|
|
this->CurrentIndex = 0;
|
|
}
|
|
|