9 lines
165 B
C++
Executable file
9 lines
165 B
C++
Executable file
#include "VanityNode.h"
|
|
|
|
FVanityNode::FVanityNode() {
|
|
this->Reward = NULL;
|
|
this->NodeID = 0;
|
|
this->bIsBig = false;
|
|
this->bIsStartingNode = false;
|
|
}
|
|
|