diff options
Diffstat (limited to 'Minecraft.World/Emboss.h')
| -rw-r--r-- | Minecraft.World/Emboss.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Minecraft.World/Emboss.h b/Minecraft.World/Emboss.h new file mode 100644 index 00000000..2fbbf460 --- /dev/null +++ b/Minecraft.World/Emboss.h @@ -0,0 +1,13 @@ +#pragma once +#include "Synth.h" + +class Emboss: public Synth +{ +private: + Synth *synth; + +public: + Emboss(Synth *synth); + + virtual double getValue(double x, double y); +};
\ No newline at end of file |
