mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:43:43 +00:00
13 lines
235 B
C++
13 lines
235 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);
|
|
}; |