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.
19 lines
363 B
C++
19 lines
363 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "TutorialHint.h"
|
|
|
|
class ItemInstance;
|
|
|
|
class TakeItemHint : public TutorialHint
|
|
{
|
|
private:
|
|
int *m_iItems;
|
|
unsigned int m_iItemsCount;
|
|
|
|
public:
|
|
TakeItemHint(eTutorial_Hint id, Tutorial *tutorial, int items[], unsigned int itemsLength);
|
|
~TakeItemHint();
|
|
|
|
virtual bool onTake( std::shared_ptr<ItemInstance> item );
|
|
}; |