mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 15:03:32 +00:00
22 lines
452 B
C++
Executable File
22 lines
452 B
C++
Executable File
#ifndef NET_MINECRAFT_WORLD_ITEM__ShovelItem_H__
|
|
#define NET_MINECRAFT_WORLD_ITEM__ShovelItem_H__
|
|
|
|
//package net.minecraft.world.item;
|
|
|
|
#include "DiggerItem.h"
|
|
#include <vector>
|
|
|
|
class Tile;
|
|
class Tier;
|
|
|
|
class ShovelItem: public DiggerItem
|
|
{
|
|
typedef DiggerItem super;
|
|
public:
|
|
ShovelItem(int id, const Tier& tier);
|
|
|
|
bool canDestroySpecial(const Tile* tile) const;
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_WORLD_ITEM__ShovelItem_H__*/
|