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 "TutorialTask.h"
5
6// Information messages
7class InfoTask : public TutorialTask
8{
9private:
10 unordered_map<int, bool> completedMappings;
11
12 ETelemetryChallenges m_eTelemetryEvent;
13
14 bool CompletionMaskIsValid();
15public:
16 InfoTask(Tutorial *tutorial, int descriptionId, int promptId = -1, bool requiresUserInput = false, int iMapping = 0, ETelemetryChallenges telemetryEvent = eTelemetryChallenges_Unknown);
17 virtual bool isCompleted();
18 virtual int getPromptId();
19 virtual void setAsCurrentTask(bool active = true);
20 virtual void handleUIInput(int iAction);
21
22private:
23 void sendTelemetry();
24
25};