Files
LegacyMultiplayerProject/Minecraft.World/Emboss.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

13 lines
176 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);
};