9 lines
155 B
C++
Executable file
9 lines
155 B
C++
Executable file
#include "CellNoise.h"
|
|
|
|
FCellNoise::FCellNoise() {
|
|
this->Seed = 0;
|
|
this->NumValues = 0;
|
|
this->MinCellValue = 0;
|
|
this->MaxCellValue = 0;
|
|
}
|
|
|