2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "TutorialHint.h"
|
|
|
|
|
|
|
|
|
|
class DiggerItem;
|
|
|
|
|
class Level;
|
|
|
|
|
|
|
|
|
|
class DiggerItemHint : public TutorialHint
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
int *m_iItems;
|
|
|
|
|
unsigned int m_iItemsCount;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
DiggerItemHint(eTutorial_Hint id, Tutorial *tutorial, int descriptionId, int items[], unsigned int itemsLength);
|
2026-03-02 15:58:20 +07:00
|
|
|
virtual int startDestroyBlock(std::shared_ptr<ItemInstance> item, Tile *tile);
|
|
|
|
|
virtual int attack(std::shared_ptr<ItemInstance> item, std::shared_ptr<Entity> entity);
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|