mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-25 23:17:06 +00:00
14 lines
234 B
C++
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);
|
|
}; |