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