Files
4jcraft/targets/minecraft/world/level/levelgen/synth/Emboss.h
T

12 lines
177 B
C++

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