the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 21 lines 589 B view raw
1#pragma once 2#include "Tutorial.h" 3 4#define FULL_TUTORIAL_PROGRESS_2_X_2_Crafting 1 5#define FULL_TUTORIAL_PROGRESS_3_X_3_Crafting 2 6#define FULL_TUTORIAL_PROGRESS_CRAFT_FURNACE 4 7#define FULL_TUTORIAL_PROGRESS_USE_FURNACE 8 8#define EXTENDED_TUTORIAL_PROGRESS_USE_BREWING_STAND 16 9 10class FullTutorial : public Tutorial 11{ 12private: 13 bool m_isTrial; 14 char m_progressFlags; 15 bool m_completedStates[e_Tutorial_State_Max]; 16public: 17 FullTutorial(int iPad, bool isTrial = false); 18 19 virtual bool isStateCompleted( eTutorial_State state ); 20 virtual void setStateCompleted( eTutorial_State state ); 21};