Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
358 B · 19 lines
C
at main
12345678910111213141516171819#pragma onceusing 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 );};