123456789 |
- #pragma once
- #include "BiomInterpolator.h"
- class BasicInterpolator : public BiomInterpolator
- {
- public:
- Framework::Either<Block*, int> interpolateBlocks( Framework::Either<Block*, int> a, Framework::Either<Block*, int> b, double aWeight, double bWeight, Noise* zNoise ) override;
- };
|