aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ShovelItem.h
blob: c9c422405a6d7d5fb2cb1fd4ee2f669d4dd103db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "DiggerItem.h"

#define SHOVEL_DIGGABLES 10
class ShovelItem : public DiggerItem
{
private:
	static TileArray *diggables;

public:
	static void staticCtor();
	ShovelItem(int id, const Tier *tier);

	bool canDestroySpecial(Tile *tile);
};