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