aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/Tutorial/TakeItemHint.h
blob: f001d4c7ab7c7e16bd6269e12d26514edc3c4a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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( shared_ptr<ItemInstance> item );
};