mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-23 18:52:54 +00:00
14 lines
271 B
C++
14 lines
271 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 canDestroySpecial(Tile* tile);
|
|
}; |