#include "GeneratorDef.hpp" #include "VoxelFragment.hpp" GeneratingVoxelStructure::GeneratingVoxelStructure( VoxelStructureMeta meta, std::unique_ptr structure ) : fragments({std::move(structure)}), meta(std::move(meta)) {} GeneratorDef::GeneratorDef(std::string name) : name(std::move(name)) {}