diff options
Diffstat (limited to 'Minecraft.Client/Common/Tutorial/TakeItemHint.h')
| -rw-r--r-- | Minecraft.Client/Common/Tutorial/TakeItemHint.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/Tutorial/TakeItemHint.h b/Minecraft.Client/Common/Tutorial/TakeItemHint.h new file mode 100644 index 00000000..f001d4c7 --- /dev/null +++ b/Minecraft.Client/Common/Tutorial/TakeItemHint.h @@ -0,0 +1,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 ); +};
\ No newline at end of file |
