mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-20 23:13:33 +00:00
the whole game
This commit is contained in:
21
src/world/item/ShovelItem.h
Executable file
21
src/world/item/ShovelItem.h
Executable file
@@ -0,0 +1,21 @@
|
||||
#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__*/
|
||||
Reference in New Issue
Block a user