Files
LegacyRenouveau/Minecraft.World/ShovelItem.h
T
Tranqlmao 37cd621561 TU43 Release 1
+ Mending & FrostWalker (Needs some tlc)
+ Path Blocks
+ All Beetroot Items
- Some SWF & Texture atlasChanges
2026-07-06 23:28:11 -04:00

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);
};