mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
13 lines
314 B
C++
13 lines
314 B
C++
#include "BuildingValueRules.h"
|
|
|
|
FBuildingValueRules::FBuildingValueRules() {
|
|
this->CellsAbove = 0;
|
|
this->CellsBelow = 0;
|
|
this->CellHorizontalRadius = 0;
|
|
this->DistanceFromObjectiveWeight = 0.00f;
|
|
this->AttackWeight = 0.00f;
|
|
this->StructuralWeight = 0.00f;
|
|
this->TrapWeight = 0.00f;
|
|
}
|
|
|