the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "RotatedPillarTile.h"
4
5class HayBlockTile : public RotatedPillarTile
6{
7 friend class ChunkRebuildData;
8public:
9 HayBlockTile(int id);
10
11 int getRenderShape();
12
13protected:
14 Icon *getTypeTexture(int type);
15
16public:
17 void registerIcons(IconRegister *iconRegister);
18};