4jcraft/targets/minecraft/world/level/levelgen/synth/Distort.h
2026-04-01 13:27:58 -05:00

13 lines
217 B
C++

#pragma once
#include "Synth.h"
class Distort : public Synth {
private:
Synth* source;
Synth* distort;
public:
Distort(Synth* source, Synth* distort);
virtual double getValue(double x, double y);
};