the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 31 lines 490 B view raw
1#pragma once 2 3#include "Tile.h" 4 5class WebTile : public Tile 6{ 7 8public: 9 WebTile(int id); 10 11 12public: 13 void entityInside(Level *level, int x, int y, int z, shared_ptr<Entity> entity); 14 15 16public: 17 bool isSolidRender(bool isServerLevel = false); 18 19public: 20 AABB *getAABB(Level *level, int x, int y, int z); 21 22public: 23 int getRenderShape(); 24 25 bool blocksLight(); 26 bool isCubeShaped(); 27 virtual int getResource(int data, Random *random, int playerBonusLevel); 28 29protected: 30 bool isSilkTouchable(); 31};