the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "GlassTile.h"
3
4GlassTile::GlassTile(int id, Material *material, bool allowSame) : HalfTransparentTile(id, L"glass", material, allowSame)
5{
6}
7
8int GlassTile::getResourceCount(Random *random)
9{
10 return 0;
11}
12
13int GlassTile::getRenderLayer()
14{
15 return 0;
16}
17
18bool GlassTile::isSolidRender()
19{
20 return false;
21}
22
23bool GlassTile::isCubeShaped()
24{
25 return false;
26}
27
28bool GlassTile::isSilkTouchable()
29{
30 return true;
31}