mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-10 19:19:01 +02:00
14 lines
216 B
C++
14 lines
216 B
C++
#pragma once
|
|
#include "Synth.h"
|
|
|
|
class Distort: public Synth
|
|
{
|
|
private:
|
|
Synth *source;
|
|
Synth *distort;
|
|
|
|
public:
|
|
Distort(Synth *source, Synth *distort);
|
|
|
|
virtual double getValue(double x, double y);
|
|
}; |