mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 19:53:37 +00:00
13 lines
194 B
C++
13 lines
194 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);
|
|
}; |