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

17 lines
402 B
C++
Executable file

#include "VeinResourceData.h"
UTerrainMaterial* UVeinResourceData::GetTerrainMaterial() const {
return NULL;
}
float UVeinResourceData::GetDesiredAmount(AProceduralSetup* pls) const {
return 0.0f;
}
UVeinResourceData::UVeinResourceData() {
this->TerrainMaterial = NULL;
this->UnitsPerLenth = 10.00f;
this->ScaleToResourceDistribution = true;
this->ResourceCreator = NULL;
}