the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 9 lines 140 B view raw
1#pragma once 2class Synth 3{ 4public: 5 virtual double getValue(double x, double y) = 0; 6 7 doubleArray create(int width, int height); 8}; 9