+ Mending & FrostWalker (Needs some tlc) + Path Blocks + All Beetroot Items - Some SWF & Texture atlasChanges
16 lines
451 B
C++
16 lines
451 B
C++
#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 useOn(shared_ptr<ItemInstance> instance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly) override;
|
|
bool canDestroySpecial(Tile *tile);
|
|
}; |