the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2using namespace std;
3
4#include "..\..\..\Minecraft.World\Class.h"
5#include "TutorialHint.h"
6
7class ItemInstance;
8
9class LookAtEntityHint : public TutorialHint
10{
11private:
12 eINSTANCEOF m_type;
13 int m_titleId;
14
15public:
16 LookAtEntityHint(eTutorial_Hint id, Tutorial *tutorial, int descriptionId, int titleId, eINSTANCEOF type);
17 ~LookAtEntityHint();
18
19 virtual bool onLookAtEntity(eINSTANCEOF type);
20};