mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:13:40 +00:00
21 lines
426 B
C++
21 lines
426 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);
|
|
//TODO: 4jcraft, added, it was never implemented
|
|
virtual ~TakeItemHint(){};
|
|
|
|
virtual bool onTake( std::shared_ptr<ItemInstance> item );
|
|
};
|