Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
327 B · 15 lines
C++
at main
12345678910111213141516#include "stdafx.h"#include "Synth.h"
doubleArray Synth::create(int width, int height){ doubleArray result = doubleArray(width * height); for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) { result[x + y * width] = getValue(x, y); } } return result;}