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