mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
13 lines
256 B
C++
13 lines
256 B
C++
#include "BuildingValueRules.h"
|
|
|
|
FBuildingValueRules::FBuildingValueRules() {
|
|
CellsAbove = 0;
|
|
CellsBelow = 0;
|
|
CellHorizontalRadius = 0;
|
|
DistanceFromObjectiveWeight = 1;
|
|
AttackWeight = 1;
|
|
StructuralWeight = 1;
|
|
TrapWeight = 1;
|
|
}
|
|
|