11 lines
307 B
C++
Executable file
11 lines
307 B
C++
Executable file
#include "DebrisItemComponent.h"
|
|
|
|
UDebrisItemComponent::UDebrisItemComponent() {
|
|
this->Debris = NULL;
|
|
this->ItemPass = EDebrisItemPass::Main;
|
|
this->InfluenceRange = 0.00f;
|
|
this->MinDistanceToImportantLocations = -1.00f;
|
|
this->UseAmount = false;
|
|
this->AmountSearchMultiplier = 25;
|
|
}
|
|
|