the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 19 lines 358 B view raw
1#pragma once 2using namespace std; 3 4#include "TutorialHint.h" 5 6class ItemInstance; 7 8class TakeItemHint : public TutorialHint 9{ 10private: 11 int *m_iItems; 12 unsigned int m_iItemsCount; 13 14public: 15 TakeItemHint(eTutorial_Hint id, Tutorial *tutorial, int items[], unsigned int itemsLength); 16 ~TakeItemHint(); 17 18 virtual bool onTake( shared_ptr<ItemInstance> item ); 19};