the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 10 lines 182 B view raw
1#pragma once 2#include "Feature.h" 3#include "Material.h" 4 5class Level; 6 7class CaveFeature : public Feature 8{ 9 virtual bool place(Level *level, Random *random, int x, int y, int z); 10};