the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "Tile.h"
3#include "Material.h"
4
5class Random;
6
7class BookshelfTile : public Tile
8{
9public:
10 BookshelfTile(int id);
11
12 virtual Icon *getTexture(int face, int data);
13 virtual int getResourceCount(Random *random);
14 virtual int getResource(int data, Random *random,int playerBonusLevel);
15};