the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "TutorialHint.h"
4
5class AABB;
6
7class AreaHint : public TutorialHint
8{
9private:
10 AABB *area;
11 bool contains; // If true we must stay in this area, if false must stay out of this area
12
13 // Only display the hint if the game is in this state
14 eTutorial_State m_displayState;
15
16 // Only display the hint if this state is not completed
17 eTutorial_State m_completeState;
18
19public:
20 AreaHint(eTutorial_Hint id, Tutorial *tutorial, eTutorial_State displayState, eTutorial_State completeState,
21 int descriptionId, double x0, double y0, double z0, double x1, double y1, double z1, bool allowFade = true, bool contains = true );
22 ~AreaHint();
23
24 virtual int tick();
25};