12 lines
274 B
C++
Executable file
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;
|
|
}
|
|
|