DRG-Femboy-Voice/Source/FSDEngine/Private/HeightMapWithMinMaxQuadTree.cpp
2025-04-15 12:39:31 -07:00

12 lines
274 B
C++
Executable file

#include "HeightMapWithMinMaxQuadTree.h"
void UHeightMapWithMinMaxQuadTree::Generate() {
}
UHeightMapWithMinMaxQuadTree::UHeightMapWithMinMaxQuadTree() {
this->MinHeight = 0.00f;
this->MaxHeight = 0.00f;
this->Dimensions = 0;
this->Initialized = false;
}