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