the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 18 lines 419 B view raw
1#pragma once 2using namespace std; 3 4#include "TutorialTask.h" 5 6class Stat; 7 8// 4J Stu - Tutorial tasks that can use the current stat trackin code. This is things like blocks mined/items crafted. 9class StatTask : public TutorialTask 10{ 11private: 12 Stat *stat; 13 int targetValue; 14 15public: 16 StatTask(Tutorial *tutorial, int descriptionId, bool enablePreCompletion, Stat *stat, int variance = 1); 17 virtual bool isCompleted(); 18};