mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:13:36 +00:00
12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
#include "../WorldGen/Noise/Synth.h"
|
|
|
|
class Emboss : public Synth {
|
|
private:
|
|
Synth* synth;
|
|
|
|
public:
|
|
Emboss(Synth* synth);
|
|
|
|
virtual double getValue(double x, double y);
|
|
}; |