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

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);
};