paysages3d/src/render/opengl/OpenGLVegetationInstance.cpp

11 lines
277 B
C++

#include "OpenGLVegetationInstance.h"
#include "VegetationInstance.h"
OpenGLVegetationInstance::OpenGLVegetationInstance(const VegetationInstance &wrapped) : wrapped(wrapped) {
}
void OpenGLVegetationInstance::setDistance(double distance) {
this->distance = distance;
}