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