mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-25 10:52:57 +00:00
12 lines
208 B
C++
12 lines
208 B
C++
#pragma once
|
|
#include <format>
|
|
#include <vector>
|
|
|
|
class Synth {
|
|
public:
|
|
virtual double getValue(double x, double y) = 0;
|
|
virtual ~Synth() {}
|
|
|
|
std::vector<double> create(int width, int height);
|
|
};
|