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