Files
FNGameProj/Source/FortniteGame/Private/BattleMapNode.cpp
T
2024-03-03 23:44:39 +01:00

11 lines
243 B
C++

#include "BattleMapNode.h"
ABattleMapNode::ABattleMapNode() {
this->EdgeClass = NULL;
this->ChildrenNodeClass = NULL;
this->bEnableAutomaticResize = true;
this->bSupportSelection = true;
this->bSupportScrubbing = true;
}