4jcraft/Minecraft.World/Util/Distort.h
2026-03-05 03:29:23 -05:00

14 lines
234 B
C++

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