This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
18 lines
466 B
C++
18 lines
466 B
C++
#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);
|
|
virtual int startDestroyBlock(std::shared_ptr<ItemInstance> item, Tile *tile);
|
|
virtual int attack(std::shared_ptr<ItemInstance> item, std::shared_ptr<Entity> entity);
|
|
}; |