exclude unused GameMode implementations, format Platform/Common/Tutorial

This commit is contained in:
Tropical
2026-03-22 02:11:47 -05:00
parent 3fa28df4da
commit a30330f1d0
64 changed files with 5917 additions and 4813 deletions

View File

@@ -1,18 +1,19 @@
#pragma once
//using namespace std;
// using namespace std;
#include "TutorialTask.h"
class Stat;
// 4J Stu - Tutorial tasks that can use the current stat trackin code. This is things like blocks mined/items crafted.
class StatTask : public TutorialTask
{
// 4J Stu - Tutorial tasks that can use the current stat trackin code. This is
// things like blocks mined/items crafted.
class StatTask : public TutorialTask {
private:
Stat *stat;
int targetValue;
Stat* stat;
int targetValue;
public:
StatTask(Tutorial *tutorial, int descriptionId, bool enablePreCompletion, Stat *stat, int variance = 1);
virtual bool isCompleted();
StatTask(Tutorial* tutorial, int descriptionId, bool enablePreCompletion,
Stat* stat, int variance = 1);
virtual bool isCompleted();
};