blob: 0607864557874f0852450cd1eb81a41ca4fc1bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
using namespace std;
#include "Item.h"
class ShearsItem : public Item
{
public:
ShearsItem(int itemId);
virtual bool mineBlock(shared_ptr<ItemInstance> itemInstance, Level *level, int tile, int x, int y, int z, shared_ptr<Mob> owner);
virtual bool canDestroySpecial(Tile *tile);
virtual float getDestroySpeed(shared_ptr<ItemInstance> itemInstance, Tile *tile);
};
|