the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 216 B view raw
1#pragma once 2#include "Synth.h" 3 4class Distort: public Synth 5{ 6private: 7 Synth *source; 8 Synth *distort; 9 10public: 11 Distort(Synth *source, Synth *distort); 12 13 virtual double getValue(double x, double y); 14};