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 "DiggerItem.h"
4
5#define HATCHET_DIGGABLES 8
6class HatchetItem : public DiggerItem
7{
8private:
9 static TileArray *diggables;
10
11public:
12 static void staticCtor();
13 HatchetItem(int id, const Tier *tier);
14 virtual float getDestroySpeed(shared_ptr<ItemInstance> itemInstance, Tile *tile); // 4J - brought forward from 1.2.3
15};